geolysis 0.7.1__tar.gz → 0.7.3__tar.gz

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.
Files changed (33) hide show
  1. {geolysis-0.7.1 → geolysis-0.7.3}/PKG-INFO +74 -91
  2. {geolysis-0.7.1 → geolysis-0.7.3}/README.md +73 -90
  3. {geolysis-0.7.1 → geolysis-0.7.3}/geolysis/__init__.py +1 -1
  4. {geolysis-0.7.1 → geolysis-0.7.3}/geolysis/spt.py +7 -1
  5. {geolysis-0.7.1 → geolysis-0.7.3}/geolysis.egg-info/PKG-INFO +74 -91
  6. {geolysis-0.7.1 → geolysis-0.7.3}/tests/test_spt.py +6 -0
  7. {geolysis-0.7.1 → geolysis-0.7.3}/LICENSE.txt +0 -0
  8. {geolysis-0.7.1 → geolysis-0.7.3}/geolysis/bearing_capacity/__init__.py +0 -0
  9. {geolysis-0.7.1 → geolysis-0.7.3}/geolysis/bearing_capacity/abc/__init__.py +0 -0
  10. {geolysis-0.7.1 → geolysis-0.7.3}/geolysis/bearing_capacity/abc/cohl/__init__.py +0 -0
  11. {geolysis-0.7.1 → geolysis-0.7.3}/geolysis/bearing_capacity/abc/cohl/_core.py +0 -0
  12. {geolysis-0.7.1 → geolysis-0.7.3}/geolysis/bearing_capacity/abc/cohl/bowles_abc.py +0 -0
  13. {geolysis-0.7.1 → geolysis-0.7.3}/geolysis/bearing_capacity/abc/cohl/meyerhof_abc.py +0 -0
  14. {geolysis-0.7.1 → geolysis-0.7.3}/geolysis/bearing_capacity/abc/cohl/terzaghi_abc.py +0 -0
  15. {geolysis-0.7.1 → geolysis-0.7.3}/geolysis/bearing_capacity/ubc/__init__.py +0 -0
  16. {geolysis-0.7.1 → geolysis-0.7.3}/geolysis/bearing_capacity/ubc/_core.py +0 -0
  17. {geolysis-0.7.1 → geolysis-0.7.3}/geolysis/bearing_capacity/ubc/hansen_ubc.py +0 -0
  18. {geolysis-0.7.1 → geolysis-0.7.3}/geolysis/bearing_capacity/ubc/terzaghi_ubc.py +0 -0
  19. {geolysis-0.7.1 → geolysis-0.7.3}/geolysis/bearing_capacity/ubc/vesic_ubc.py +0 -0
  20. {geolysis-0.7.1 → geolysis-0.7.3}/geolysis/foundation.py +0 -0
  21. {geolysis-0.7.1 → geolysis-0.7.3}/geolysis/soil_classifier.py +0 -0
  22. {geolysis-0.7.1 → geolysis-0.7.3}/geolysis/utils/__init__.py +0 -0
  23. {geolysis-0.7.1 → geolysis-0.7.3}/geolysis/utils/exceptions.py +0 -0
  24. {geolysis-0.7.1 → geolysis-0.7.3}/geolysis/utils/validators.py +0 -0
  25. {geolysis-0.7.1 → geolysis-0.7.3}/geolysis.egg-info/SOURCES.txt +0 -0
  26. {geolysis-0.7.1 → geolysis-0.7.3}/geolysis.egg-info/dependency_links.txt +0 -0
  27. {geolysis-0.7.1 → geolysis-0.7.3}/geolysis.egg-info/requires.txt +0 -0
  28. {geolysis-0.7.1 → geolysis-0.7.3}/geolysis.egg-info/top_level.txt +0 -0
  29. {geolysis-0.7.1 → geolysis-0.7.3}/pyproject.toml +0 -0
  30. {geolysis-0.7.1 → geolysis-0.7.3}/setup.cfg +0 -0
  31. {geolysis-0.7.1 → geolysis-0.7.3}/setup.py +0 -0
  32. {geolysis-0.7.1 → geolysis-0.7.3}/tests/test_foundation.py +0 -0
  33. {geolysis-0.7.1 → geolysis-0.7.3}/tests/test_soil_classifier.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: geolysis
3
- Version: 0.7.1
3
+ Version: 0.7.3
4
4
  Summary: geolysis is an opensource software for geotechnical engineering analysis and modeling.
5
5
  Author-email: Patrick Boateng <boatengpato.pb@gmail.com>
6
6
  License: MIT License
@@ -49,57 +49,77 @@ alt="geolysislogo" width="75%" />
49
49
 
50
50
  </div>
51
51
 
52
- `geolysis` is an open-source library for geotechnical analysis and modeling.
53
- It offers tools for soil classification, Standard Penetration Test (SPT)
54
- analysis, and bearing capacity estimation, among others.
55
-
56
- The `geolysis` library is among four main projects: `geolysis.gui`,
57
- `geolysis.excel`, and `geolysis.ai`. The geolysis library powers all of these
58
- projects.
59
-
60
- **_The `geolysis` projects are currently under developement and not yet
61
- publicly available_**.
62
-
63
- **_Active development of `geolysis` occurs on the `dev` branch. For more
64
- information on the latest features of `geolysis`, switch to the
65
- `dev` branch_**.
66
-
67
- Here are brief descriptions of these projects:
68
-
69
- <table>
70
- <tr>
71
- <td>
72
- <strong>geolysis.gui</strong>
73
- </td>
74
- <td>A graphical user interface that allows users to interact with the
75
- geolysis library. Through this interface, users can view generated reports
76
- and visualizations, such as Particle Size Distribution (PSD) curves,
77
- Atterberg Limits plots, and Compaction curves, among others.
78
- Additionally, it enables users to conduct foundation analysis and
79
- design, among other functionalities.
80
- </td>
81
- </tr>
82
- <tr>
83
- <td>
84
- <strong>geolysis.excel</strong>
85
- </td>
86
- <td>An add-in for Microsoft Excel that performs simple geotechnical
87
- analysis. It offers some features similar to <code>geolysis.gui</code>
88
- within Microsoft Excel.
89
- </td>
90
- </tr>
91
- <tr>
92
- <td>
93
- <strong>geolysis.ai</strong>
94
- </td>
95
- <td>Offers machine learning models that are trained using geotechnical data.
96
- </td>
97
- </tr>
98
- </table>
99
-
100
- # Microsoft Excel Example
101
-
102
- ![geolysis excel example](geolysis_excel_example.gif)
52
+ `geolysis` is an open-source python package (library) for geotechnical analysis
53
+ and modeling. It offers tools for soil classification, Standard Penetration
54
+ Test (SPT) analysis, and bearing capacity estimation, among others.
55
+
56
+ The `geolysis` package is among three other projects, `geolysis.gui`,
57
+ `geolysis.excel`, and `geolysis.ai`.
58
+
59
+ Here are brief descriptions of the `geolysis` projects:
60
+
61
+ 1. `geolysis`
62
+
63
+ A python package (library) which provides the core functionalities for
64
+ `geolysis.gui` and the `geolysis.excel` applications. Current features
65
+ provided by the `geolysis` package are shown in the table below.
66
+
67
+ <table>
68
+ <tr>
69
+ <td><strong>Soil Classification</strong></td>
70
+ <td>AASHTO Classification System</td>
71
+ </tr>
72
+ <tr>
73
+ <td></td>
74
+ <td>Unified Soil Classification System</td>
75
+ </tr>
76
+ <tr>
77
+ <td><strong>Standard Penetration Test (SPT) Analysis</strong></td>
78
+ <td>SPT Energy Correction</td>
79
+ </tr>
80
+ <tr>
81
+ <td></td>
82
+ <td>SPT Overburden Pressure Correction</td>
83
+ </tr>
84
+ <tr>
85
+ <td></td>
86
+ <td>SPT Dilatancy Correction</td>
87
+ </tr>
88
+ <tr>
89
+ <td></td>
90
+ <td>SPT N-Design Calculation</td>
91
+ </tr>
92
+ <tr>
93
+ <td><strong>Bearing Capacity Estimation</strong></td>
94
+ <td>Allowable Bearing Capacity Estimation</td>
95
+ </tr>
96
+ <tr>
97
+ <td></td>
98
+ <td>Ultimate Bearing Capacity Estimation</td>
99
+ </tr>
100
+ </table>
101
+
102
+ 2. `geolysis.gui`
103
+
104
+ A graphical user interface that allows users to interact with the `geolysis`
105
+ package. Through this interface, users can view generated reports and
106
+ visualizations, such as Particle Size Distribution (PSD) curves, Atterberg
107
+ Limits plots, and Compaction curves, among others.
108
+
109
+ 3. `geolysis.excel`
110
+
111
+ An add-in for Microsoft Excel that performs simple geotechnical analysis.
112
+ It offers some features similar to `geolysis.gui` within Microsoft Excel.
113
+ Below is an example of the Microsoft Excel addin.
114
+
115
+ <div align="center">
116
+ <img src="https://raw.githubusercontent.com/patrickboateng/geolysis/main/docs/_static/geolysis_excel_example.gif"
117
+ alt="geolysis excel example" width="100%" />
118
+ </div><br>
119
+
120
+ 4. `geolysis.ai`
121
+
122
+ Offers machine learning models that are trained using geotechnical data.
103
123
 
104
124
  ## Project Structure
105
125
 
@@ -166,43 +186,6 @@ SoilClf(symbol='A-6(4)', description='Clayey soils')
166
186
  Check out more examples
167
187
  [here](https://docs.geolysis.io/en/latest/user_guide/getting_started.html#quick-start)
168
188
 
169
- ## Features
170
-
171
- <table>
172
- <tr>
173
- <td><strong>Soil Classification</strong></td>
174
- <td>AASHTO Classification System</td>
175
- </tr>
176
- <tr>
177
- <td></td>
178
- <td>Unified Soil Classification System</td>
179
- </tr>
180
- <tr>
181
- <td><strong>Standard Penetration Test (SPT) Analysis</strong></td>
182
- <td>SPT Energy Correction</td>
183
- </tr>
184
- <tr>
185
- <td></td>
186
- <td>SPT Overburden Pressure Correction</td>
187
- </tr>
188
- <tr>
189
- <td></td>
190
- <td>Dilatancy Correction</td>
191
- </tr>
192
- <tr>
193
- <td></td>
194
- <td>SPT N-Design Calculation</td>
195
- </tr>
196
- <tr>
197
- <td><strong>Bearing Capacity Estimation</strong></td>
198
- <td>Allowable Bearing Capacity Estimation</td>
199
- </tr>
200
- <tr>
201
- <td></td>
202
- <td>Ultimate Bearing Capacity Estimation</td>
203
- </tr>
204
- </table>
205
-
206
189
  ## Documentation
207
190
 
208
191
  Full documentation is available [here](https://docs.geolysis.io/en/latest/)
@@ -220,5 +203,5 @@ file for more details.
220
203
 
221
204
  ## Contact
222
205
 
223
- For questions or feedback, please contact us at
224
- [boatengpato.pb@gmail.com](mailto:boatengpato.pb@gmail.com)
206
+ For questions or feedback, please
207
+ contact [boatengpato.pb@gmail.com](mailto:boatengpato.pb@gmail.com)
@@ -17,57 +17,77 @@ alt="geolysislogo" width="75%" />
17
17
 
18
18
  </div>
19
19
 
20
- `geolysis` is an open-source library for geotechnical analysis and modeling.
21
- It offers tools for soil classification, Standard Penetration Test (SPT)
22
- analysis, and bearing capacity estimation, among others.
23
-
24
- The `geolysis` library is among four main projects: `geolysis.gui`,
25
- `geolysis.excel`, and `geolysis.ai`. The geolysis library powers all of these
26
- projects.
27
-
28
- **_The `geolysis` projects are currently under developement and not yet
29
- publicly available_**.
30
-
31
- **_Active development of `geolysis` occurs on the `dev` branch. For more
32
- information on the latest features of `geolysis`, switch to the
33
- `dev` branch_**.
34
-
35
- Here are brief descriptions of these projects:
36
-
37
- <table>
38
- <tr>
39
- <td>
40
- <strong>geolysis.gui</strong>
41
- </td>
42
- <td>A graphical user interface that allows users to interact with the
43
- geolysis library. Through this interface, users can view generated reports
44
- and visualizations, such as Particle Size Distribution (PSD) curves,
45
- Atterberg Limits plots, and Compaction curves, among others.
46
- Additionally, it enables users to conduct foundation analysis and
47
- design, among other functionalities.
48
- </td>
49
- </tr>
50
- <tr>
51
- <td>
52
- <strong>geolysis.excel</strong>
53
- </td>
54
- <td>An add-in for Microsoft Excel that performs simple geotechnical
55
- analysis. It offers some features similar to <code>geolysis.gui</code>
56
- within Microsoft Excel.
57
- </td>
58
- </tr>
59
- <tr>
60
- <td>
61
- <strong>geolysis.ai</strong>
62
- </td>
63
- <td>Offers machine learning models that are trained using geotechnical data.
64
- </td>
65
- </tr>
66
- </table>
67
-
68
- # Microsoft Excel Example
69
-
70
- ![geolysis excel example](geolysis_excel_example.gif)
20
+ `geolysis` is an open-source python package (library) for geotechnical analysis
21
+ and modeling. It offers tools for soil classification, Standard Penetration
22
+ Test (SPT) analysis, and bearing capacity estimation, among others.
23
+
24
+ The `geolysis` package is among three other projects, `geolysis.gui`,
25
+ `geolysis.excel`, and `geolysis.ai`.
26
+
27
+ Here are brief descriptions of the `geolysis` projects:
28
+
29
+ 1. `geolysis`
30
+
31
+ A python package (library) which provides the core functionalities for
32
+ `geolysis.gui` and the `geolysis.excel` applications. Current features
33
+ provided by the `geolysis` package are shown in the table below.
34
+
35
+ <table>
36
+ <tr>
37
+ <td><strong>Soil Classification</strong></td>
38
+ <td>AASHTO Classification System</td>
39
+ </tr>
40
+ <tr>
41
+ <td></td>
42
+ <td>Unified Soil Classification System</td>
43
+ </tr>
44
+ <tr>
45
+ <td><strong>Standard Penetration Test (SPT) Analysis</strong></td>
46
+ <td>SPT Energy Correction</td>
47
+ </tr>
48
+ <tr>
49
+ <td></td>
50
+ <td>SPT Overburden Pressure Correction</td>
51
+ </tr>
52
+ <tr>
53
+ <td></td>
54
+ <td>SPT Dilatancy Correction</td>
55
+ </tr>
56
+ <tr>
57
+ <td></td>
58
+ <td>SPT N-Design Calculation</td>
59
+ </tr>
60
+ <tr>
61
+ <td><strong>Bearing Capacity Estimation</strong></td>
62
+ <td>Allowable Bearing Capacity Estimation</td>
63
+ </tr>
64
+ <tr>
65
+ <td></td>
66
+ <td>Ultimate Bearing Capacity Estimation</td>
67
+ </tr>
68
+ </table>
69
+
70
+ 2. `geolysis.gui`
71
+
72
+ A graphical user interface that allows users to interact with the `geolysis`
73
+ package. Through this interface, users can view generated reports and
74
+ visualizations, such as Particle Size Distribution (PSD) curves, Atterberg
75
+ Limits plots, and Compaction curves, among others.
76
+
77
+ 3. `geolysis.excel`
78
+
79
+ An add-in for Microsoft Excel that performs simple geotechnical analysis.
80
+ It offers some features similar to `geolysis.gui` within Microsoft Excel.
81
+ Below is an example of the Microsoft Excel addin.
82
+
83
+ <div align="center">
84
+ <img src="https://raw.githubusercontent.com/patrickboateng/geolysis/main/docs/_static/geolysis_excel_example.gif"
85
+ alt="geolysis excel example" width="100%" />
86
+ </div><br>
87
+
88
+ 4. `geolysis.ai`
89
+
90
+ Offers machine learning models that are trained using geotechnical data.
71
91
 
72
92
  ## Project Structure
73
93
 
@@ -134,43 +154,6 @@ SoilClf(symbol='A-6(4)', description='Clayey soils')
134
154
  Check out more examples
135
155
  [here](https://docs.geolysis.io/en/latest/user_guide/getting_started.html#quick-start)
136
156
 
137
- ## Features
138
-
139
- <table>
140
- <tr>
141
- <td><strong>Soil Classification</strong></td>
142
- <td>AASHTO Classification System</td>
143
- </tr>
144
- <tr>
145
- <td></td>
146
- <td>Unified Soil Classification System</td>
147
- </tr>
148
- <tr>
149
- <td><strong>Standard Penetration Test (SPT) Analysis</strong></td>
150
- <td>SPT Energy Correction</td>
151
- </tr>
152
- <tr>
153
- <td></td>
154
- <td>SPT Overburden Pressure Correction</td>
155
- </tr>
156
- <tr>
157
- <td></td>
158
- <td>Dilatancy Correction</td>
159
- </tr>
160
- <tr>
161
- <td></td>
162
- <td>SPT N-Design Calculation</td>
163
- </tr>
164
- <tr>
165
- <td><strong>Bearing Capacity Estimation</strong></td>
166
- <td>Allowable Bearing Capacity Estimation</td>
167
- </tr>
168
- <tr>
169
- <td></td>
170
- <td>Ultimate Bearing Capacity Estimation</td>
171
- </tr>
172
- </table>
173
-
174
157
  ## Documentation
175
158
 
176
159
  Full documentation is available [here](https://docs.geolysis.io/en/latest/)
@@ -188,5 +171,5 @@ file for more details.
188
171
 
189
172
  ## Contact
190
173
 
191
- For questions or feedback, please contact us at
192
- [boatengpato.pb@gmail.com](mailto:boatengpato.pb@gmail.com)
174
+ For questions or feedback, please
175
+ contact [boatengpato.pb@gmail.com](mailto:boatengpato.pb@gmail.com)
@@ -1,5 +1,5 @@
1
1
  from . import foundation, soil_classifier, spt
2
2
 
3
- __version__ = "0.7.1"
3
+ __version__ = "0.7.3"
4
4
 
5
5
  __all__ = ["foundation", "soil_classifier", "spt"]
@@ -7,7 +7,7 @@ from abc import abstractmethod
7
7
  from typing import Final, Sequence, Literal
8
8
 
9
9
  from .utils import enum_repr, isclose, log10, mean, round_, sqrt, validators
10
- from .utils.exceptions import EnumErrorMsg, ErrorMsg
10
+ from .utils.exceptions import EnumErrorMsg, ErrorMsg, ValidationError
11
11
 
12
12
  __all__ = ["SPTNDesign",
13
13
  "HammerType",
@@ -53,6 +53,10 @@ class SPTNDesign:
53
53
  @corrected_spt_n_values.setter
54
54
  @validators.min_len(1)
55
55
  def corrected_spt_n_values(self, val: Sequence[float]) -> None:
56
+ for v in val:
57
+ if v <= 0.0 or v > 100:
58
+ raise ValidationError(
59
+ "SPT N-values must be between 0.0 and 100.")
56
60
  self._corrected_spt_n_values = val
57
61
 
58
62
  @staticmethod
@@ -300,6 +304,7 @@ class OPC:
300
304
  return self._std_spt_n_value
301
305
 
302
306
  @std_spt_n_value.setter
307
+ @validators.le(100)
303
308
  @validators.gt(0.0)
304
309
  def std_spt_n_value(self, val: float) -> None:
305
310
  self._std_spt_n_value = val
@@ -494,6 +499,7 @@ class DilatancyCorrection:
494
499
  return self._corr_spt_n_value
495
500
 
496
501
  @corr_spt_n_value.setter
502
+ @validators.le(100.0)
497
503
  @validators.gt(0.0)
498
504
  def corr_spt_n_value(self, val: float) -> None:
499
505
  self._corr_spt_n_value = val
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: geolysis
3
- Version: 0.7.1
3
+ Version: 0.7.3
4
4
  Summary: geolysis is an opensource software for geotechnical engineering analysis and modeling.
5
5
  Author-email: Patrick Boateng <boatengpato.pb@gmail.com>
6
6
  License: MIT License
@@ -49,57 +49,77 @@ alt="geolysislogo" width="75%" />
49
49
 
50
50
  </div>
51
51
 
52
- `geolysis` is an open-source library for geotechnical analysis and modeling.
53
- It offers tools for soil classification, Standard Penetration Test (SPT)
54
- analysis, and bearing capacity estimation, among others.
55
-
56
- The `geolysis` library is among four main projects: `geolysis.gui`,
57
- `geolysis.excel`, and `geolysis.ai`. The geolysis library powers all of these
58
- projects.
59
-
60
- **_The `geolysis` projects are currently under developement and not yet
61
- publicly available_**.
62
-
63
- **_Active development of `geolysis` occurs on the `dev` branch. For more
64
- information on the latest features of `geolysis`, switch to the
65
- `dev` branch_**.
66
-
67
- Here are brief descriptions of these projects:
68
-
69
- <table>
70
- <tr>
71
- <td>
72
- <strong>geolysis.gui</strong>
73
- </td>
74
- <td>A graphical user interface that allows users to interact with the
75
- geolysis library. Through this interface, users can view generated reports
76
- and visualizations, such as Particle Size Distribution (PSD) curves,
77
- Atterberg Limits plots, and Compaction curves, among others.
78
- Additionally, it enables users to conduct foundation analysis and
79
- design, among other functionalities.
80
- </td>
81
- </tr>
82
- <tr>
83
- <td>
84
- <strong>geolysis.excel</strong>
85
- </td>
86
- <td>An add-in for Microsoft Excel that performs simple geotechnical
87
- analysis. It offers some features similar to <code>geolysis.gui</code>
88
- within Microsoft Excel.
89
- </td>
90
- </tr>
91
- <tr>
92
- <td>
93
- <strong>geolysis.ai</strong>
94
- </td>
95
- <td>Offers machine learning models that are trained using geotechnical data.
96
- </td>
97
- </tr>
98
- </table>
99
-
100
- # Microsoft Excel Example
101
-
102
- ![geolysis excel example](geolysis_excel_example.gif)
52
+ `geolysis` is an open-source python package (library) for geotechnical analysis
53
+ and modeling. It offers tools for soil classification, Standard Penetration
54
+ Test (SPT) analysis, and bearing capacity estimation, among others.
55
+
56
+ The `geolysis` package is among three other projects, `geolysis.gui`,
57
+ `geolysis.excel`, and `geolysis.ai`.
58
+
59
+ Here are brief descriptions of the `geolysis` projects:
60
+
61
+ 1. `geolysis`
62
+
63
+ A python package (library) which provides the core functionalities for
64
+ `geolysis.gui` and the `geolysis.excel` applications. Current features
65
+ provided by the `geolysis` package are shown in the table below.
66
+
67
+ <table>
68
+ <tr>
69
+ <td><strong>Soil Classification</strong></td>
70
+ <td>AASHTO Classification System</td>
71
+ </tr>
72
+ <tr>
73
+ <td></td>
74
+ <td>Unified Soil Classification System</td>
75
+ </tr>
76
+ <tr>
77
+ <td><strong>Standard Penetration Test (SPT) Analysis</strong></td>
78
+ <td>SPT Energy Correction</td>
79
+ </tr>
80
+ <tr>
81
+ <td></td>
82
+ <td>SPT Overburden Pressure Correction</td>
83
+ </tr>
84
+ <tr>
85
+ <td></td>
86
+ <td>SPT Dilatancy Correction</td>
87
+ </tr>
88
+ <tr>
89
+ <td></td>
90
+ <td>SPT N-Design Calculation</td>
91
+ </tr>
92
+ <tr>
93
+ <td><strong>Bearing Capacity Estimation</strong></td>
94
+ <td>Allowable Bearing Capacity Estimation</td>
95
+ </tr>
96
+ <tr>
97
+ <td></td>
98
+ <td>Ultimate Bearing Capacity Estimation</td>
99
+ </tr>
100
+ </table>
101
+
102
+ 2. `geolysis.gui`
103
+
104
+ A graphical user interface that allows users to interact with the `geolysis`
105
+ package. Through this interface, users can view generated reports and
106
+ visualizations, such as Particle Size Distribution (PSD) curves, Atterberg
107
+ Limits plots, and Compaction curves, among others.
108
+
109
+ 3. `geolysis.excel`
110
+
111
+ An add-in for Microsoft Excel that performs simple geotechnical analysis.
112
+ It offers some features similar to `geolysis.gui` within Microsoft Excel.
113
+ Below is an example of the Microsoft Excel addin.
114
+
115
+ <div align="center">
116
+ <img src="https://raw.githubusercontent.com/patrickboateng/geolysis/main/docs/_static/geolysis_excel_example.gif"
117
+ alt="geolysis excel example" width="100%" />
118
+ </div><br>
119
+
120
+ 4. `geolysis.ai`
121
+
122
+ Offers machine learning models that are trained using geotechnical data.
103
123
 
104
124
  ## Project Structure
105
125
 
@@ -166,43 +186,6 @@ SoilClf(symbol='A-6(4)', description='Clayey soils')
166
186
  Check out more examples
167
187
  [here](https://docs.geolysis.io/en/latest/user_guide/getting_started.html#quick-start)
168
188
 
169
- ## Features
170
-
171
- <table>
172
- <tr>
173
- <td><strong>Soil Classification</strong></td>
174
- <td>AASHTO Classification System</td>
175
- </tr>
176
- <tr>
177
- <td></td>
178
- <td>Unified Soil Classification System</td>
179
- </tr>
180
- <tr>
181
- <td><strong>Standard Penetration Test (SPT) Analysis</strong></td>
182
- <td>SPT Energy Correction</td>
183
- </tr>
184
- <tr>
185
- <td></td>
186
- <td>SPT Overburden Pressure Correction</td>
187
- </tr>
188
- <tr>
189
- <td></td>
190
- <td>Dilatancy Correction</td>
191
- </tr>
192
- <tr>
193
- <td></td>
194
- <td>SPT N-Design Calculation</td>
195
- </tr>
196
- <tr>
197
- <td><strong>Bearing Capacity Estimation</strong></td>
198
- <td>Allowable Bearing Capacity Estimation</td>
199
- </tr>
200
- <tr>
201
- <td></td>
202
- <td>Ultimate Bearing Capacity Estimation</td>
203
- </tr>
204
- </table>
205
-
206
189
  ## Documentation
207
190
 
208
191
  Full documentation is available [here](https://docs.geolysis.io/en/latest/)
@@ -220,5 +203,5 @@ file for more details.
220
203
 
221
204
  ## Contact
222
205
 
223
- For questions or feedback, please contact us at
224
- [boatengpato.pb@gmail.com](mailto:boatengpato.pb@gmail.com)
206
+ For questions or feedback, please
207
+ contact [boatengpato.pb@gmail.com](mailto:boatengpato.pb@gmail.com)
@@ -32,6 +32,12 @@ class TestSPTDesign:
32
32
  method="max")
33
33
  spt_design.n_design()
34
34
 
35
+ with pytest.raises(ValueError):
36
+ SPTNDesign(corrected_spt_n_values=[22, 44, 120])
37
+
38
+ with pytest.raises(ValueError):
39
+ SPTNDesign(corrected_spt_n_values=[0.0, 15.0, 18])
40
+
35
41
 
36
42
  class TestEnergyCorrection:
37
43
 
File without changes
File without changes
File without changes
File without changes