geolysis 0.11.0__py3-none-any.whl → 0.12.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 +1 -1
- geolysis/bearing_capacity/abc/_cohl/_core.py +29 -12
- geolysis/bearing_capacity/abc/_cohl/bowles_abc.py +11 -11
- geolysis/bearing_capacity/abc/_cohl/meyerhof_abc.py +11 -11
- geolysis/bearing_capacity/abc/_cohl/terzaghi_abc.py +11 -11
- geolysis/bearing_capacity/ubc/__init__.py +17 -13
- geolysis/bearing_capacity/ubc/_core.py +123 -65
- geolysis/bearing_capacity/ubc/_hansen_ubc.py +26 -14
- geolysis/bearing_capacity/ubc/_terzaghi_ubc.py +33 -54
- geolysis/bearing_capacity/ubc/_vesic_ubc.py +72 -43
- geolysis/foundation.py +42 -9
- geolysis/soil_classifier.py +23 -24
- geolysis/spt.py +33 -41
- geolysis/{utils.py → utils/__init__.py} +14 -51
- geolysis/utils/math.py +57 -0
- {geolysis-0.11.0.dist-info → geolysis-0.12.0.dist-info}/METADATA +46 -38
- geolysis-0.12.0.dist-info/RECORD +23 -0
- geolysis-0.11.0.dist-info/RECORD +0 -22
- {geolysis-0.11.0.dist-info → geolysis-0.12.0.dist-info}/WHEEL +0 -0
- {geolysis-0.11.0.dist-info → geolysis-0.12.0.dist-info}/licenses/LICENSE.txt +0 -0
- {geolysis-0.11.0.dist-info → geolysis-0.12.0.dist-info}/top_level.txt +0 -0
geolysis/spt.py
CHANGED
@@ -61,9 +61,9 @@ class SPT:
|
|
61
61
|
"""
|
62
62
|
|
63
63
|
def __init__(
|
64
|
-
|
65
|
-
|
66
|
-
|
64
|
+
self,
|
65
|
+
corrected_spt_n_values: Sequence[float],
|
66
|
+
method: SPTDesignMethod.WEIGHTED = "wgt",
|
67
67
|
):
|
68
68
|
"""
|
69
69
|
:param corrected_spt_n_values: Corrected SPT N-values within the
|
@@ -82,12 +82,12 @@ class SPT:
|
|
82
82
|
@corrected_spt_n_values.setter
|
83
83
|
@validate_func_args
|
84
84
|
def corrected_spt_n_values(
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
85
|
+
self,
|
86
|
+
corrected_spt_n_values: Annotated[
|
87
|
+
Sequence[float],
|
88
|
+
MustHaveLengthGreaterThan(1),
|
89
|
+
MustHaveValuesBetween(min_value=1.0, max_value=100.0),
|
90
|
+
],
|
91
91
|
) -> None:
|
92
92
|
self._corrected_spt_n_values = corrected_spt_n_values
|
93
93
|
|
@@ -115,7 +115,7 @@ class SPT:
|
|
115
115
|
sum_wgts = 0.0
|
116
116
|
|
117
117
|
for i, corr_spt_n_val in enumerate(vals, start=1):
|
118
|
-
wgt = 1 / i
|
118
|
+
wgt = 1 / i**2
|
119
119
|
sum_total += wgt * corr_spt_n_val
|
120
120
|
sum_wgts += wgt
|
121
121
|
|
@@ -220,14 +220,14 @@ class EnergyCorrection:
|
|
220
220
|
}
|
221
221
|
|
222
222
|
def __init__(
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
223
|
+
self,
|
224
|
+
recorded_spt_n_value: int,
|
225
|
+
*,
|
226
|
+
energy_percentage=0.6,
|
227
|
+
borehole_diameter=65.0,
|
228
|
+
rod_length=3.0,
|
229
|
+
hammer_type=HammerType.DONUT_1,
|
230
|
+
sampler_type=SamplerType.STANDARD,
|
231
231
|
):
|
232
232
|
"""
|
233
233
|
:param recorded_spt_n_value: Recorded SPT N-value from field.
|
@@ -254,8 +254,7 @@ class EnergyCorrection:
|
|
254
254
|
@recorded_spt_n_value.setter
|
255
255
|
@validate_func_args
|
256
256
|
def recorded_spt_n_value(
|
257
|
-
|
258
|
-
val: Annotated[int, MustBeBetween(min_value=0, max_value=100)]
|
257
|
+
self, val: Annotated[int, MustBeBetween(min_value=0, max_value=100)]
|
259
258
|
) -> None:
|
260
259
|
self._recorded_spt_value = val
|
261
260
|
|
@@ -267,8 +266,7 @@ class EnergyCorrection:
|
|
267
266
|
@energy_percentage.setter
|
268
267
|
@validate_func_args
|
269
268
|
def energy_percentage(
|
270
|
-
|
271
|
-
val: Annotated[float, MustBeBetween(min_value=0.0, max_value=1.0)]
|
269
|
+
self, val: Annotated[float, MustBeBetween(min_value=0.0, max_value=1.0)]
|
272
270
|
) -> None:
|
273
271
|
self._energy_percentage = val
|
274
272
|
|
@@ -280,8 +278,7 @@ class EnergyCorrection:
|
|
280
278
|
@borehole_diameter.setter
|
281
279
|
@validate_func_args
|
282
280
|
def borehole_diameter(
|
283
|
-
|
284
|
-
float, MustBeBetween(min_value=65.0, max_value=200.0)]
|
281
|
+
self, val: Annotated[float, MustBeBetween(min_value=65.0, max_value=200.0)]
|
285
282
|
) -> None:
|
286
283
|
self._borehole_diameter = val
|
287
284
|
|
@@ -302,8 +299,7 @@ class EnergyCorrection:
|
|
302
299
|
@hammer_type.setter
|
303
300
|
@validate_func_args
|
304
301
|
def hammer_type(
|
305
|
-
|
306
|
-
hammer_type: Annotated[HammerType, MustBeMemberOf(HammerType)]
|
302
|
+
self, hammer_type: Annotated[HammerType, MustBeMemberOf(HammerType)]
|
307
303
|
):
|
308
304
|
self._hammer_type = hammer_type
|
309
305
|
|
@@ -313,8 +309,7 @@ class EnergyCorrection:
|
|
313
309
|
|
314
310
|
@sampler_type.setter
|
315
311
|
@validate_func_args
|
316
|
-
def sampler_type(self,
|
317
|
-
val: Annotated[SamplerType, MustBeMemberOf(SamplerType)]):
|
312
|
+
def sampler_type(self, val: Annotated[SamplerType, MustBeMemberOf(SamplerType)]):
|
318
313
|
self._sampler_type = val
|
319
314
|
|
320
315
|
@property
|
@@ -362,10 +357,10 @@ class EnergyCorrection:
|
|
362
357
|
`ENERGY`: 0.6, 0.55, etc
|
363
358
|
"""
|
364
359
|
numerator = (
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
360
|
+
self.hammer_efficiency
|
361
|
+
* self.borehole_diameter_correction
|
362
|
+
* self.sampler_correction
|
363
|
+
* self.rod_length_correction
|
369
364
|
)
|
370
365
|
return numerator / self.energy_percentage
|
371
366
|
|
@@ -406,8 +401,7 @@ class OPC:
|
|
406
401
|
@std_spt_n_value.setter
|
407
402
|
@validate_func_args
|
408
403
|
def std_spt_n_value(
|
409
|
-
|
410
|
-
float, MustBeBetween(min_value=0.0, max_value=100.0)]
|
404
|
+
self, val: Annotated[float, MustBeBetween(min_value=0.0, max_value=100.0)]
|
411
405
|
):
|
412
406
|
self._std_spt_n_value = val
|
413
407
|
|
@@ -436,8 +430,7 @@ class GibbsHoltzOPC(OPC):
|
|
436
430
|
|
437
431
|
@eop.setter
|
438
432
|
@validate_func_args
|
439
|
-
def eop(self, val: Annotated[
|
440
|
-
float, MustBeBetween(min_value=0.0, max_value=280.0)]):
|
433
|
+
def eop(self, val: Annotated[float, MustBeBetween(min_value=0.0, max_value=280.0)]):
|
441
434
|
self._eop = val
|
442
435
|
|
443
436
|
def correction(self) -> float:
|
@@ -529,8 +522,7 @@ class DilatancyCorrection:
|
|
529
522
|
@corr_spt_n_value.setter
|
530
523
|
@validate_func_args
|
531
524
|
def corr_spt_n_value(
|
532
|
-
|
533
|
-
float, MustBeBetween(min_value=0.0, max_value=100.0)]
|
525
|
+
self, val: Annotated[float, MustBeBetween(min_value=0.0, max_value=100.0)]
|
534
526
|
):
|
535
527
|
self._corr_spt_n_value = val
|
536
528
|
|
@@ -576,9 +568,9 @@ _opctypes = {
|
|
576
568
|
|
577
569
|
@validate_func_args
|
578
570
|
def create_overburden_pressure_correction(
|
579
|
-
|
580
|
-
|
581
|
-
|
571
|
+
std_spt_n_value: float,
|
572
|
+
eop: float,
|
573
|
+
opc_type: Annotated[OPCType | str, MustBeMemberOf(OPCType)] = "gibbs",
|
582
574
|
):
|
583
575
|
"""A factory function that encapsulates the creation of overburden
|
584
576
|
pressure correction.
|
@@ -1,31 +1,12 @@
|
|
1
1
|
import enum
|
2
2
|
import functools
|
3
|
-
import math
|
4
|
-
from math import exp, inf, isclose, log10, pi, sqrt
|
5
|
-
from statistics import fmean as mean
|
6
3
|
from typing import Callable
|
7
4
|
|
8
5
|
from func_validator import ValidationError
|
9
6
|
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
"inf",
|
14
|
-
"pi",
|
15
|
-
"deg2rad",
|
16
|
-
"rad2deg",
|
17
|
-
"tan",
|
18
|
-
"cot",
|
19
|
-
"sin",
|
20
|
-
"cos",
|
21
|
-
"arctan",
|
22
|
-
"round_",
|
23
|
-
"mean",
|
24
|
-
"exp",
|
25
|
-
"isclose",
|
26
|
-
"log10",
|
27
|
-
"sqrt",
|
28
|
-
]
|
7
|
+
from .math import *
|
8
|
+
|
9
|
+
__all__ = ["AbstractStrEnum", "ValidationError", "add_repr", "round_"]
|
29
10
|
|
30
11
|
|
31
12
|
class StrEnumMeta(enum.EnumMeta):
|
@@ -46,39 +27,21 @@ class AbstractStrEnum(enum.StrEnum, metaclass=StrEnumMeta):
|
|
46
27
|
"""
|
47
28
|
|
48
29
|
|
49
|
-
def
|
50
|
-
"""
|
51
|
-
return math.radians(x)
|
52
|
-
|
53
|
-
|
54
|
-
def rad2deg(x: float, /) -> float:
|
55
|
-
"""Convert angle x from radians to degrees."""
|
56
|
-
return math.degrees(x)
|
57
|
-
|
58
|
-
|
59
|
-
def tan(x: float, /) -> float:
|
60
|
-
"""Return the tangent of x (measured in degrees)."""
|
61
|
-
return math.tan(deg2rad(x))
|
62
|
-
|
63
|
-
|
64
|
-
def cot(x: float, /) -> float:
|
65
|
-
"""Return the cotangent of x (measured in degrees)."""
|
66
|
-
return 1 / tan(x)
|
67
|
-
|
68
|
-
|
69
|
-
def sin(x: float, /) -> float:
|
70
|
-
"""Return the sine of x (measured in degrees)."""
|
71
|
-
return math.sin(deg2rad(x))
|
30
|
+
def add_repr(cls):
|
31
|
+
"""A class decorator that adds a __repr__ method to the class."""
|
72
32
|
|
33
|
+
def __repr__(self) -> str:
|
34
|
+
inst_attrs = self.__dict__
|
35
|
+
attrs = (f"{key.strip('_')}={val}" for key, val in inst_attrs.items())
|
36
|
+
return f"{type(self).__name__}({', '.join(attrs)})"
|
73
37
|
|
74
|
-
def
|
75
|
-
|
76
|
-
return math.cos(deg2rad(x))
|
38
|
+
def __str__(self) -> str:
|
39
|
+
return repr(self)
|
77
40
|
|
41
|
+
cls.__repr__ = __repr__
|
42
|
+
cls.__str__ = __str__
|
78
43
|
|
79
|
-
|
80
|
-
"""Return the arc tangent (measured in degrees) of x."""
|
81
|
-
return rad2deg(math.atan(x))
|
44
|
+
return cls
|
82
45
|
|
83
46
|
|
84
47
|
def round_(ndigits: int) -> Callable:
|
geolysis/utils/math.py
ADDED
@@ -0,0 +1,57 @@
|
|
1
|
+
import math
|
2
|
+
from math import exp, inf, isclose, log10, pi, sqrt, isinf, atan
|
3
|
+
from statistics import fmean as mean
|
4
|
+
|
5
|
+
__all__ = [
|
6
|
+
"atan",
|
7
|
+
"inf",
|
8
|
+
"isinf",
|
9
|
+
"pi",
|
10
|
+
"deg2rad",
|
11
|
+
"rad2deg",
|
12
|
+
"tandeg",
|
13
|
+
"cotdeg",
|
14
|
+
"sindeg",
|
15
|
+
"cosdeg",
|
16
|
+
"arctandeg",
|
17
|
+
"mean",
|
18
|
+
"exp",
|
19
|
+
"isclose",
|
20
|
+
"log10",
|
21
|
+
"sqrt",
|
22
|
+
]
|
23
|
+
|
24
|
+
|
25
|
+
def deg2rad(x: float, /) -> float:
|
26
|
+
"""Convert angle x from degrees to radians."""
|
27
|
+
return math.radians(x)
|
28
|
+
|
29
|
+
|
30
|
+
def rad2deg(x: float, /) -> float:
|
31
|
+
"""Convert angle x from radians to degrees."""
|
32
|
+
return math.degrees(x)
|
33
|
+
|
34
|
+
|
35
|
+
def tandeg(x: float, /) -> float:
|
36
|
+
"""Return the tangent of x (measured in degrees)."""
|
37
|
+
return math.tan(deg2rad(x))
|
38
|
+
|
39
|
+
|
40
|
+
def cotdeg(x: float, /) -> float:
|
41
|
+
"""Return the cotangent of x (measured in degrees)."""
|
42
|
+
return 1 / tandeg(x)
|
43
|
+
|
44
|
+
|
45
|
+
def sindeg(x: float, /) -> float:
|
46
|
+
"""Return the sine of x (measured in degrees)."""
|
47
|
+
return math.sin(deg2rad(x))
|
48
|
+
|
49
|
+
|
50
|
+
def cosdeg(x: float, /) -> float:
|
51
|
+
"""Return the cosine of x (measured in degrees)."""
|
52
|
+
return math.cos(deg2rad(x))
|
53
|
+
|
54
|
+
|
55
|
+
def arctandeg(x: float, /) -> float:
|
56
|
+
"""Return the arc tangent (measured in degrees) of x."""
|
57
|
+
return rad2deg(math.atan(x))
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: geolysis
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.12.0
|
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
|
@@ -57,7 +57,8 @@ The `geolysis` python package is among three other projects, `geolysis.excel`,
|
|
57
57
|
`geolysis.gui`, and `geolysis.ai`. More details about these projects are
|
58
58
|
provided [here](https://github.com/geolysis-dev).
|
59
59
|
|
60
|
-
`geolysis` has only one project dependency which
|
60
|
+
`geolysis` has only one project dependency which
|
61
|
+
is [func-validator](https://github.com/patrickboateng/func-validator/)
|
61
62
|
for validating `function` (and `method`) arguments.
|
62
63
|
|
63
64
|
The rest of this **README** provides an overview of the `geolysis` python
|
@@ -83,58 +84,64 @@ $ pip install geolysis
|
|
83
84
|
|
84
85
|
## API Reference
|
85
86
|
|
86
|
-
- [Python API](https://docs.geolysis.io/en/latest/reference/)
|
87
|
-
- [geolysis.bearing_capacity.abc](https://docs.geolysis.io/en/latest/reference/allowable_bearing_capacity/) -
|
87
|
+
- [Python API](https://docs.geolysis.io/en/latest/reference/)
|
88
|
+
- [geolysis.bearing_capacity.abc](https://docs.geolysis.io/en/latest/reference/allowable_bearing_capacity/) -
|
89
|
+
_Allowable bearing capacity
|
88
90
|
estimation_
|
89
|
-
- [geolysis.bearing_capacity.ubc](https://docs.geolysis.io/en/latest/reference/ultimate_bearing_capacity/) -
|
91
|
+
- [geolysis.bearing_capacity.ubc](https://docs.geolysis.io/en/latest/reference/ultimate_bearing_capacity/) -
|
92
|
+
_Ultimate bearing capacity
|
90
93
|
estimation_
|
91
|
-
- [geolysis.foundation](https://docs.geolysis.io/en/latest/reference/foundation/) -
|
92
|
-
|
93
|
-
- [geolysis.
|
94
|
-
|
95
|
-
|
94
|
+
- [geolysis.foundation](https://docs.geolysis.io/en/latest/reference/foundation/) -
|
95
|
+
_Foundation Representation_
|
96
|
+
- [geolysis.soil_classifier](https://docs.geolysis.io/en/latest/reference/soil_classifier/) -
|
97
|
+
_Soil classification_
|
98
|
+
- [geolysis.spt](https://docs.geolysis.io/en/latest/reference/spt/) -
|
99
|
+
_Standard Penetration Test (SPT) Analysis_
|
100
|
+
- [geolysis.utils](https://docs.geolysis.io/en/latest/reference/utils/) -
|
101
|
+
_Utilities_
|
96
102
|
|
97
103
|
## Imports
|
98
104
|
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
- **Ultimate Bearing Capacity (UBC)**
|
108
|
-
|
109
|
-
```python
|
110
|
-
from geolysis.bearing_capacity.ubc import create_ubc_4_all_soil_types
|
111
|
-
```
|
112
|
-
|
113
|
-
- **Foundation**
|
114
|
-
|
115
|
-
```python
|
116
|
-
from geolysis.foundation import create_foundation
|
117
|
-
```
|
105
|
+
### Bearing Capacity
|
106
|
+
|
107
|
+
- **Allowable Bearing Capacity (ABC)**
|
108
|
+
|
109
|
+
```python
|
110
|
+
from geolysis.bearing_capacity.abc import create_abc_4_cohesionless_soils
|
111
|
+
```
|
118
112
|
|
113
|
+
- **Ultimate Bearing Capacity (UBC)**
|
119
114
|
|
120
|
-
- **Soil Classification**
|
121
|
-
|
122
115
|
```python
|
123
|
-
from geolysis.
|
124
|
-
from geolysis.soil_classifier import create_aashto_classifier
|
116
|
+
from geolysis.bearing_capacity.ubc import create_ubc_4_all_soil_types
|
125
117
|
```
|
126
|
-
|
127
|
-
|
128
|
-
|
118
|
+
|
119
|
+
### Foundation
|
120
|
+
|
121
|
+
```python
|
122
|
+
from geolysis.foundation import create_foundation
|
123
|
+
```
|
124
|
+
|
125
|
+
### Soil Classification
|
126
|
+
|
127
|
+
```python
|
128
|
+
from geolysis.soil_classifier import create_uscs_classifier
|
129
|
+
from geolysis.soil_classifier import create_aashto_classifier
|
130
|
+
```
|
131
|
+
|
132
|
+
### Standard Penetration Test (SPT) Analysis
|
133
|
+
|
129
134
|
```python
|
130
135
|
from geolysis.spt import DilatancyCorrection
|
131
136
|
from geolysis.spt import EnergyCorrection
|
132
137
|
from geolysis.spt import SPT
|
133
138
|
from geolysis.spt import create_overburden_pressure_correction
|
134
139
|
```
|
135
|
-
|
140
|
+
|
136
141
|
## Project Structure
|
137
142
|
|
143
|
+
These are the main components of the project structure
|
144
|
+
|
138
145
|
.
|
139
146
|
├── .github # GitHub Actions
|
140
147
|
├── docs # Documentation files
|
@@ -171,7 +178,8 @@ Check out the full [documentation](https://docs.geolysis.io/en/latest/).
|
|
171
178
|
|
172
179
|
## Contributing
|
173
180
|
|
174
|
-
Check out
|
181
|
+
Check out
|
182
|
+
the [contribution guidelines](https://docs.geolysis.io/en/latest/dev_guide/)
|
175
183
|
|
176
184
|
## License
|
177
185
|
|
@@ -0,0 +1,23 @@
|
|
1
|
+
geolysis/__init__.py,sha256=YeQEtgF2PcR6s7EYEqNbirBHSK4wkpkD0tu2P_JKe-w,161
|
2
|
+
geolysis/foundation.py,sha256=F1PcVpwQLtdfuhF8qzsoTrDRBNd8G3dac3YVj0kUDNk,13677
|
3
|
+
geolysis/soil_classifier.py,sha256=kbvfOSm6gtde0jTxY70FB0cfgVCEHeChrZErWkjJMW8,27334
|
4
|
+
geolysis/spt.py,sha256=19FmnG3UNHbnJatZf3oZ2UazCb_a-knIvII67IonaIg,16940
|
5
|
+
geolysis/bearing_capacity/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
6
|
+
geolysis/bearing_capacity/abc/__init__.py,sha256=nycD68gdA116n2VX5fT_hq7ZZz3CF4OVuU3DIgnlnZw,518
|
7
|
+
geolysis/bearing_capacity/abc/_cohl/__init__.py,sha256=M1EBn2WMgtG-Dg-LT7N-OVke6upwL6plqyPCn3ebR0M,4110
|
8
|
+
geolysis/bearing_capacity/abc/_cohl/_core.py,sha256=QtedY1gUAM5U3pyndxmQl2hMVL1obAAEBwQX1tiEoo0,2591
|
9
|
+
geolysis/bearing_capacity/abc/_cohl/bowles_abc.py,sha256=frjZXiVGTR53gRjYNYfYMlx-q9TLltyPHbJFpN7XOiY,2414
|
10
|
+
geolysis/bearing_capacity/abc/_cohl/meyerhof_abc.py,sha256=vXDdtFwYzmD2vOXEQxSQb-jp1bPlB4blmcfNi1zAk78,2377
|
11
|
+
geolysis/bearing_capacity/abc/_cohl/terzaghi_abc.py,sha256=Juenai6DJtQraeNmwQcr9V3L_TQgds89cJNIaCBac58,3236
|
12
|
+
geolysis/bearing_capacity/ubc/__init__.py,sha256=6bZJ5pGgBIJkNOkrXE6ezkLXCu05mhrXiqIPFo6xW1o,4739
|
13
|
+
geolysis/bearing_capacity/ubc/_core.py,sha256=gY1a73_fIrPu0y9MxuoSTdvMk4BZ2bLkPPqgy5VaRwg,8016
|
14
|
+
geolysis/bearing_capacity/ubc/_hansen_ubc.py,sha256=IfH_dbHC0LGCyALw5qAuIaXxYEYloA0hlX6KIaXD46g,5630
|
15
|
+
geolysis/bearing_capacity/ubc/_terzaghi_ubc.py,sha256=GvSN0u_RTejl6oaQrlHj9y3dZVWn2Y89bNRZLpFjrBk,4223
|
16
|
+
geolysis/bearing_capacity/ubc/_vesic_ubc.py,sha256=z0F0t-AYTvcjkqrNKky7nMsRHsvLfPoMHrDptGpAoHM,6636
|
17
|
+
geolysis/utils/__init__.py,sha256=r2CoOK29ucbQ7GGsWJg-qDsXBgzAeGv8LastI29b5ys,1795
|
18
|
+
geolysis/utils/math.py,sha256=7_ipjdcQft3-8wTPNj-2wRq8Z7KEm_C2ymkraSrKuYw,1195
|
19
|
+
geolysis-0.12.0.dist-info/licenses/LICENSE.txt,sha256=ap6sMs3lT7ICbEXBhgihwH1BTCVcjmCQkIkwVnil1Ak,1065
|
20
|
+
geolysis-0.12.0.dist-info/METADATA,sha256=9waPtBu0xS4HDyhpe8VP7zBrsAZRhuif18k6MGTQKZw,6831
|
21
|
+
geolysis-0.12.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
22
|
+
geolysis-0.12.0.dist-info/top_level.txt,sha256=9mnQgOaCRr11dtXff8X-q3FfXjRONd6kHseSy5q2y8g,9
|
23
|
+
geolysis-0.12.0.dist-info/RECORD,,
|
geolysis-0.11.0.dist-info/RECORD
DELETED
@@ -1,22 +0,0 @@
|
|
1
|
-
geolysis/__init__.py,sha256=ZeA59xkCLwiAA8wj2WyZEBkQlW1_JDu8nNCjTzJq96I,161
|
2
|
-
geolysis/foundation.py,sha256=khmZCa8V-UEqp7A4WlIwt8Oy5tVQdT0UsaLMuxEbDQU,12819
|
3
|
-
geolysis/soil_classifier.py,sha256=Rv1LiJID4DalpZPT0s0ulOkwR_1aZh2px8k8xpG6w-4,27437
|
4
|
-
geolysis/spt.py,sha256=GfFf4j2AilqQCrAOeJJBmk0vXcOCJ8XorUilsC1X13Y,17179
|
5
|
-
geolysis/utils.py,sha256=UnfRaz0MXxBxipcyezYMsxl5LuUTPl_kTztNQ94B8gA,2461
|
6
|
-
geolysis/bearing_capacity/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
7
|
-
geolysis/bearing_capacity/abc/__init__.py,sha256=nycD68gdA116n2VX5fT_hq7ZZz3CF4OVuU3DIgnlnZw,518
|
8
|
-
geolysis/bearing_capacity/abc/_cohl/__init__.py,sha256=M1EBn2WMgtG-Dg-LT7N-OVke6upwL6plqyPCn3ebR0M,4110
|
9
|
-
geolysis/bearing_capacity/abc/_cohl/_core.py,sha256=1YeOe2YYUr6UHdaOjNQoy_PcZo8VTdouz-j2kpdEVqU,2094
|
10
|
-
geolysis/bearing_capacity/abc/_cohl/bowles_abc.py,sha256=70SCvyxKVtjE-gPO5YxnQ_098mkBBUjjQ3F_BQZYGVY,2448
|
11
|
-
geolysis/bearing_capacity/abc/_cohl/meyerhof_abc.py,sha256=mIvqXoMLJ9z7JDEUQYPV1n2Ssn0z6CYL8qFNU2PcKqk,2411
|
12
|
-
geolysis/bearing_capacity/abc/_cohl/terzaghi_abc.py,sha256=P6pCmDK-a2ZFL06dTkVUJ2jlE4CGEvgVAk5nToCZqy0,3270
|
13
|
-
geolysis/bearing_capacity/ubc/__init__.py,sha256=yaFFsmOb4q88-nfzilOcgYmb1_x2D2Tg2Po3XTKc52g,4483
|
14
|
-
geolysis/bearing_capacity/ubc/_core.py,sha256=oXt11GeMRbsRVMC0zNpIQDspb0W4RYKRxOm5K35Po_E,6114
|
15
|
-
geolysis/bearing_capacity/ubc/_hansen_ubc.py,sha256=_VmTUD3hlAylNnLWQW0wwhEEz17EM1WPGtfb9LtnrBk,5559
|
16
|
-
geolysis/bearing_capacity/ubc/_terzaghi_ubc.py,sha256=Vo1GXBTJWxfE3QZ1u6hMfw1P3VkHGKxlEdvLBr8h-7A,5272
|
17
|
-
geolysis/bearing_capacity/ubc/_vesic_ubc.py,sha256=ThyPHXRGbLHyhThMkUUp5ABknYj0K_xkwNiML_Ua0sM,5752
|
18
|
-
geolysis-0.11.0.dist-info/licenses/LICENSE.txt,sha256=ap6sMs3lT7ICbEXBhgihwH1BTCVcjmCQkIkwVnil1Ak,1065
|
19
|
-
geolysis-0.11.0.dist-info/METADATA,sha256=_03ifJZXSKZAdjP3HoazS_yqhYfueYBmlNRFKLkp7DI,6814
|
20
|
-
geolysis-0.11.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
21
|
-
geolysis-0.11.0.dist-info/top_level.txt,sha256=9mnQgOaCRr11dtXff8X-q3FfXjRONd6kHseSy5q2y8g,9
|
22
|
-
geolysis-0.11.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|