geolysis 0.4.4__py3-none-any.whl → 0.5.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/__init__.py +30 -90
- geolysis/bearing_capacity/abc/cohl/_core.py +55 -0
- geolysis/bearing_capacity/abc/cohl/bowles_abc.py +1 -1
- geolysis/bearing_capacity/abc/cohl/meyerhof_abc.py +1 -1
- geolysis/bearing_capacity/abc/cohl/terzaghi_abc.py +1 -1
- geolysis/bearing_capacity/ubc/__init__.py +42 -219
- geolysis/bearing_capacity/ubc/_core.py +192 -0
- geolysis/bearing_capacity/ubc/hansen_ubc.py +3 -2
- geolysis/bearing_capacity/ubc/terzaghi_ubc.py +2 -1
- geolysis/bearing_capacity/ubc/vesic_ubc.py +4 -3
- geolysis/foundation.py +51 -17
- geolysis/soil_classifier.py +24 -22
- geolysis/spt.py +195 -73
- {geolysis-0.4.4.dist-info → geolysis-0.5.0.dist-info}/METADATA +3 -3
- geolysis-0.5.0.dist-info/RECORD +23 -0
- {geolysis-0.4.4.dist-info → geolysis-0.5.0.dist-info}/WHEEL +1 -1
- geolysis-0.4.4.dist-info/RECORD +0 -21
- {geolysis-0.4.4.dist-info → geolysis-0.5.0.dist-info/licenses}/LICENSE.txt +0 -0
- {geolysis-0.4.4.dist-info → geolysis-0.5.0.dist-info}/top_level.txt +0 -0
geolysis/spt.py
CHANGED
@@ -9,6 +9,7 @@ Enums
|
|
9
9
|
|
10
10
|
HammerType
|
11
11
|
SamplerType
|
12
|
+
OPCType
|
12
13
|
|
13
14
|
Classes
|
14
15
|
=======
|
@@ -24,6 +25,14 @@ Classes
|
|
24
25
|
LiaoWhitmanOPC
|
25
26
|
SkemptonOPC
|
26
27
|
DilatancyCorrection
|
28
|
+
|
29
|
+
Functions
|
30
|
+
=========
|
31
|
+
|
32
|
+
.. autosummary::
|
33
|
+
:toctree: _autosummary
|
34
|
+
|
35
|
+
create_spt_correction
|
27
36
|
"""
|
28
37
|
import enum
|
29
38
|
from abc import abstractmethod
|
@@ -65,6 +74,7 @@ class SPTNDesign:
|
|
65
74
|
|
66
75
|
@property
|
67
76
|
def corrected_spt_n_values(self) -> Sequence[float]:
|
77
|
+
"""Corrected SPT N-values within the foundation influence zone."""
|
68
78
|
return self._corrected_spt_n_values
|
69
79
|
|
70
80
|
@corrected_spt_n_values.setter
|
@@ -147,17 +157,15 @@ class EnergyCorrection:
|
|
147
157
|
``ENERGY``: 0.6, 0.55, etc
|
148
158
|
"""
|
149
159
|
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
HammerType.PIN: 0.45}
|
160
|
+
_HAMMER_EFFICIENCY_FACTORS = {HammerType.AUTOMATIC: 0.70,
|
161
|
+
HammerType.DONUT_1: 0.60,
|
162
|
+
HammerType.DONUT_2: 0.50,
|
163
|
+
HammerType.SAFETY: 0.55,
|
164
|
+
HammerType.DROP: 0.45,
|
165
|
+
HammerType.PIN: 0.45}
|
157
166
|
|
158
|
-
|
159
|
-
|
160
|
-
SamplerType.NON_STANDARD: 1.20}
|
167
|
+
_SAMPLER_CORRECTION_FACTORS = {SamplerType.STANDARD: 1.00,
|
168
|
+
SamplerType.NON_STANDARD: 1.20}
|
161
169
|
|
162
170
|
def __init__(self, recorded_spt_n_value: int, *,
|
163
171
|
energy_percentage=0.6,
|
@@ -173,10 +181,10 @@ class EnergyCorrection:
|
|
173
181
|
sampler, defaults to 0.6
|
174
182
|
:type energy_percentage: float, optional
|
175
183
|
|
176
|
-
:param borehole_diameter: Borehole diameter, defaults to 65.0.
|
184
|
+
:param borehole_diameter: Borehole diameter (mm), defaults to 65.0.
|
177
185
|
:type borehole_diameter: float, optional
|
178
186
|
|
179
|
-
:param rod_length:
|
187
|
+
:param rod_length: Length of SPT rod, defaults to 3.0. (m)
|
180
188
|
:type rod_length: float, optional
|
181
189
|
|
182
190
|
:param hammer_type: Hammer type, defaults to :attr:`HammerType.DONUT_1`
|
@@ -194,6 +202,7 @@ class EnergyCorrection:
|
|
194
202
|
|
195
203
|
@property
|
196
204
|
def recorded_spt_n_value(self) -> int:
|
205
|
+
"""Recorded SPT N-value from field."""
|
197
206
|
return self._recorded_spt_value
|
198
207
|
|
199
208
|
@recorded_spt_n_value.setter
|
@@ -204,6 +213,7 @@ class EnergyCorrection:
|
|
204
213
|
|
205
214
|
@property
|
206
215
|
def energy_percentage(self) -> float:
|
216
|
+
"""Energy percentage reaching the tip of the sampler."""
|
207
217
|
return self._energy_percentage
|
208
218
|
|
209
219
|
@energy_percentage.setter
|
@@ -214,6 +224,7 @@ class EnergyCorrection:
|
|
214
224
|
|
215
225
|
@property
|
216
226
|
def borehole_diameter(self) -> float:
|
227
|
+
"""Borehole diameter (mm)."""
|
217
228
|
return self._borehole_diameter
|
218
229
|
|
219
230
|
@borehole_diameter.setter
|
@@ -224,6 +235,7 @@ class EnergyCorrection:
|
|
224
235
|
|
225
236
|
@property
|
226
237
|
def rod_length(self) -> float:
|
238
|
+
"""Length of SPT rod."""
|
227
239
|
return self._rod_length
|
228
240
|
|
229
241
|
@rod_length.setter
|
@@ -234,7 +246,7 @@ class EnergyCorrection:
|
|
234
246
|
@property
|
235
247
|
def hammer_efficiency(self) -> float:
|
236
248
|
"""Hammer efficiency correction factor."""
|
237
|
-
return self.
|
249
|
+
return self._HAMMER_EFFICIENCY_FACTORS[self.hammer_type]
|
238
250
|
|
239
251
|
@property
|
240
252
|
def borehole_diameter_correction(self) -> float:
|
@@ -250,7 +262,7 @@ class EnergyCorrection:
|
|
250
262
|
@property
|
251
263
|
def sampler_correction(self) -> float:
|
252
264
|
"""Sampler correction factor."""
|
253
|
-
return self.
|
265
|
+
return self._SAMPLER_CORRECTION_FACTORS[self.sampler_type]
|
254
266
|
|
255
267
|
@property
|
256
268
|
def rod_length_correction(self) -> float:
|
@@ -274,8 +286,8 @@ class EnergyCorrection:
|
|
274
286
|
return numerator / self.energy_percentage
|
275
287
|
|
276
288
|
@round_(ndigits=1)
|
277
|
-
def
|
278
|
-
"""
|
289
|
+
def standardized_spt_n_value(self) -> float:
|
290
|
+
"""Standardized SPT N-value."""
|
279
291
|
return self.correction() * self.recorded_spt_n_value
|
280
292
|
|
281
293
|
|
@@ -295,6 +307,7 @@ class OPC:
|
|
295
307
|
|
296
308
|
@property
|
297
309
|
def std_spt_n_value(self) -> float:
|
310
|
+
"""SPT N-value standardized for field procedures."""
|
298
311
|
return self._std_spt_n_value
|
299
312
|
|
300
313
|
@std_spt_n_value.setter
|
@@ -304,7 +317,18 @@ class OPC:
|
|
304
317
|
|
305
318
|
@round_(ndigits=1)
|
306
319
|
def corrected_spt_n_value(self) -> float:
|
307
|
-
"""Corrected SPT N-value.
|
320
|
+
r"""Corrected SPT N-value.
|
321
|
+
|
322
|
+
:Equation:
|
323
|
+
|
324
|
+
.. math:: (N_1)_{60} = C_N \cdot N_{60}
|
325
|
+
|
326
|
+
.. note::
|
327
|
+
|
328
|
+
``60`` is used in this case to represent ``60%`` hammer efficiency
|
329
|
+
and can be any percentage of hammer efficiency e.g :math:`N_{55}`
|
330
|
+
for ``55%`` hammer efficiency.
|
331
|
+
"""
|
308
332
|
corrected_spt = self.correction() * self.std_spt_n_value
|
309
333
|
# Corrected SPT should not be more
|
310
334
|
# than 2 times the Standardized SPT
|
@@ -316,20 +340,11 @@ class OPC:
|
|
316
340
|
|
317
341
|
|
318
342
|
class GibbsHoltzOPC(OPC):
|
319
|
-
|
320
|
-
|
321
|
-
:Equation:
|
322
|
-
|
323
|
-
.. math:: C_N = \dfrac{350}{\sigma_o + 70} \, \sigma_o \le 280kN/m^2
|
324
|
-
|
325
|
-
:math:`\frac{N_c}{N_{60}}` should lie between 0.45 and 2.0, if
|
326
|
-
:math:`\frac{N_c}{N_{60}}` is greater than 2.0, :math:`N_c` should be
|
327
|
-
divided by 2.0 to obtain the design value used in finding the bearing
|
328
|
-
capacity of the soil.
|
329
|
-
"""
|
343
|
+
"""Overburden Pressure Correction according to ``Gibbs & Holtz (1957)``."""
|
330
344
|
|
331
345
|
@property
|
332
346
|
def eop(self) -> float:
|
347
|
+
"""Effective overburden pressure (:math:`kpa`)."""
|
333
348
|
return self._eop
|
334
349
|
|
335
350
|
@eop.setter
|
@@ -339,25 +354,24 @@ class GibbsHoltzOPC(OPC):
|
|
339
354
|
self._eop = val
|
340
355
|
|
341
356
|
def correction(self) -> float:
|
342
|
-
"""SPT Correction.
|
357
|
+
r"""SPT Correction.
|
358
|
+
|
359
|
+
:Equation:
|
360
|
+
|
361
|
+
.. math:: C_N = \dfrac{350}{\sigma_o + 70} \, \sigma_o \le 280kN/m^2
|
362
|
+
|
363
|
+
:math:`\frac{N_c}{N_{60}}` should lie between 0.45 and 2.0, if
|
364
|
+
:math:`\frac{N_c}{N_{60}}` is greater than 2.0, :math:`N_c` should be
|
365
|
+
divided by 2.0 to obtain the design value used in finding the bearing
|
366
|
+
capacity of the soil.
|
367
|
+
"""
|
343
368
|
corr = 350.0 / (self.eop + 70.0)
|
344
369
|
return corr / 2.0 if corr > 2.0 else corr
|
345
370
|
|
346
371
|
|
347
372
|
class BazaraaPeckOPC(OPC):
|
348
|
-
|
373
|
+
"""Overburden Pressure Correction according to ``Bazaraa (1967)``, and
|
349
374
|
also by ``Peck and Bazaraa (1969)``.
|
350
|
-
|
351
|
-
:Equation:
|
352
|
-
|
353
|
-
.. math::
|
354
|
-
|
355
|
-
C_N &= \dfrac{4}{1 + 0.0418 \cdot \sigma_o}, \, \sigma_o \lt 71.8kN/m^2
|
356
|
-
|
357
|
-
C_N &= \dfrac{4}{3.25 + 0.0104 \cdot \sigma_o},
|
358
|
-
\, \sigma_o \gt 71.8kN/m^2
|
359
|
-
|
360
|
-
C_N &= 1 \, , \, \sigma_o = 71.8kN/m^2
|
361
375
|
"""
|
362
376
|
|
363
377
|
#: Maximum effective overburden pressure (:math:`kPa`).
|
@@ -365,15 +379,29 @@ class BazaraaPeckOPC(OPC):
|
|
365
379
|
|
366
380
|
@property
|
367
381
|
def eop(self) -> float:
|
382
|
+
"""Effective overburden pressure (:math:`kPa`)."""
|
368
383
|
return self._eop
|
369
384
|
|
370
385
|
@eop.setter
|
371
386
|
@validators.ge(0.0)
|
372
387
|
def eop(self, val: float) -> None:
|
388
|
+
"""Effective overburden pressure (:math:`kPa`)."""
|
373
389
|
self._eop = val
|
374
390
|
|
375
391
|
def correction(self) -> float:
|
376
|
-
"""SPT Correction.
|
392
|
+
r"""SPT Correction.
|
393
|
+
|
394
|
+
:Equation:
|
395
|
+
|
396
|
+
.. math::
|
397
|
+
|
398
|
+
C_N &= \dfrac{4}{1 + 0.0418 \cdot \sigma_o}, \, \sigma_o \lt 71.8kN/m^2
|
399
|
+
|
400
|
+
C_N &= \dfrac{4}{3.25 + 0.0104 \cdot \sigma_o},
|
401
|
+
\, \sigma_o \gt 71.8kN/m^2
|
402
|
+
|
403
|
+
C_N &= 1 \, , \, \sigma_o = 71.8kN/m^2
|
404
|
+
"""
|
377
405
|
if isclose(self.eop, self.STD_PRESSURE, rel_tol=0.01):
|
378
406
|
corr = 1.0
|
379
407
|
elif self.eop < self.STD_PRESSURE:
|
@@ -384,15 +412,11 @@ class BazaraaPeckOPC(OPC):
|
|
384
412
|
|
385
413
|
|
386
414
|
class PeckOPC(OPC):
|
387
|
-
|
388
|
-
|
389
|
-
:Equation:
|
390
|
-
|
391
|
-
.. math:: C_N = 0.77 \log \left(\dfrac{2000}{\sigma_o} \right)
|
392
|
-
"""
|
415
|
+
"""Overburden Pressure Correction according to ``Peck et al. (1974)``."""
|
393
416
|
|
394
417
|
@property
|
395
418
|
def eop(self) -> float:
|
419
|
+
"""Effective overburden pressure (:math:`kPa`)."""
|
396
420
|
return self._eop
|
397
421
|
|
398
422
|
@eop.setter
|
@@ -401,20 +425,22 @@ class PeckOPC(OPC):
|
|
401
425
|
self._eop = val
|
402
426
|
|
403
427
|
def correction(self) -> float:
|
404
|
-
"""SPT Correction.
|
405
|
-
return 0.77 * log10(2000.0 / self.eop)
|
428
|
+
r"""SPT Correction.
|
406
429
|
|
430
|
+
:Equation:
|
407
431
|
|
408
|
-
|
409
|
-
|
432
|
+
.. math:: C_N = 0.77 \log \left(\dfrac{2000}{\sigma_o} \right)
|
433
|
+
"""
|
434
|
+
return 0.77 * log10(2000.0 / self.eop)
|
410
435
|
|
411
|
-
:Equation:
|
412
436
|
|
413
|
-
|
437
|
+
class LiaoWhitmanOPC(OPC):
|
438
|
+
"""Overburden Pressure Correction according to ``Liao & Whitman (1986)``.
|
414
439
|
"""
|
415
440
|
|
416
441
|
@property
|
417
442
|
def eop(self) -> float:
|
443
|
+
"""Effective overburden pressure (:math:`kPa`)."""
|
418
444
|
return self._eop
|
419
445
|
|
420
446
|
@eop.setter
|
@@ -423,20 +449,21 @@ class LiaoWhitmanOPC(OPC):
|
|
423
449
|
self._eop = val
|
424
450
|
|
425
451
|
def correction(self) -> float:
|
426
|
-
"""SPT Correction.
|
427
|
-
return sqrt(100.0 / self.eop)
|
452
|
+
r"""SPT Correction.
|
428
453
|
|
454
|
+
:Equation:
|
429
455
|
|
430
|
-
|
431
|
-
|
456
|
+
.. math:: C_N = \sqrt{\dfrac{100}{\sigma_o}}
|
457
|
+
"""
|
458
|
+
return sqrt(100.0 / self.eop)
|
432
459
|
|
433
|
-
:Equation:
|
434
460
|
|
435
|
-
|
436
|
-
"""
|
461
|
+
class SkemptonOPC(OPC):
|
462
|
+
"""Overburden Pressure Correction according to ``Skempton (1986)``."""
|
437
463
|
|
438
464
|
@property
|
439
465
|
def eop(self) -> float:
|
466
|
+
"""Effective overburden pressure (:math:`kPa`)."""
|
440
467
|
return self._eop
|
441
468
|
|
442
469
|
@eop.setter
|
@@ -445,25 +472,21 @@ class SkemptonOPC(OPC):
|
|
445
472
|
self._eop = val
|
446
473
|
|
447
474
|
def correction(self) -> float:
|
448
|
-
"""SPT Correction.
|
475
|
+
r"""SPT Correction.
|
476
|
+
|
477
|
+
:Equation:
|
478
|
+
|
479
|
+
.. math:: C_N = \dfrac{2}{1 + 0.01044 \cdot \sigma_o}
|
480
|
+
"""
|
449
481
|
return 2.0 / (1.0 + 0.01044 * self.eop)
|
450
482
|
|
451
483
|
|
452
484
|
class DilatancyCorrection:
|
453
|
-
|
485
|
+
"""Dilatancy SPT Correction according to ``Terzaghi & Peck (1948)``.
|
454
486
|
|
455
487
|
For coarse sand, this correction is not required. In applying this
|
456
488
|
correction, overburden pressure correction is applied first and then
|
457
489
|
dilatancy correction is applied.
|
458
|
-
|
459
|
-
:Equation:
|
460
|
-
|
461
|
-
.. math::
|
462
|
-
|
463
|
-
(N_1)_{60} &= 15 + \dfrac{1}{2}((N_1)_{60} - 15) \, , \,
|
464
|
-
(N_1)_{60} \gt 15
|
465
|
-
|
466
|
-
(N_1)_{60} &= (N_1)_{60} \, , \, (N_1)_{60} \le 15
|
467
490
|
"""
|
468
491
|
|
469
492
|
def __init__(self, corr_spt_n_value: float) -> None:
|
@@ -476,6 +499,9 @@ class DilatancyCorrection:
|
|
476
499
|
|
477
500
|
@property
|
478
501
|
def corr_spt_n_value(self) -> float:
|
502
|
+
"""SPT N-value standardized for field procedures and/or corrected for
|
503
|
+
overburden pressure.
|
504
|
+
"""
|
479
505
|
return self._std_spt_n_value
|
480
506
|
|
481
507
|
@corr_spt_n_value.setter
|
@@ -485,7 +511,103 @@ class DilatancyCorrection:
|
|
485
511
|
|
486
512
|
@round_(ndigits=1)
|
487
513
|
def corrected_spt_n_value(self) -> float:
|
488
|
-
"""Corrected SPT N-value.
|
514
|
+
r"""Corrected SPT N-value.
|
515
|
+
|
516
|
+
:Equation:
|
517
|
+
|
518
|
+
.. math::
|
519
|
+
|
520
|
+
(N_1)_{60} &= 15 + \dfrac{1}{2}((N_1)_{60} - 15) \, , \,
|
521
|
+
(N_1)_{60} \gt 15
|
522
|
+
|
523
|
+
(N_1)_{60} &= (N_1)_{60} \, , \, (N_1)_{60} \le 15
|
524
|
+
"""
|
489
525
|
if self.corr_spt_n_value <= 15.0:
|
490
526
|
return self.corr_spt_n_value
|
491
527
|
return 15.0 + 0.5 * (self.corr_spt_n_value - 15.0)
|
528
|
+
|
529
|
+
|
530
|
+
@enum_repr
|
531
|
+
class OPCType(enum.StrEnum):
|
532
|
+
"""Enumeration of overburden pressure correction types."""
|
533
|
+
GIBBS = enum.auto()
|
534
|
+
BAZARAA = enum.auto()
|
535
|
+
PECK = enum.auto()
|
536
|
+
LIAO = enum.auto()
|
537
|
+
SKEMPTON = enum.auto()
|
538
|
+
|
539
|
+
|
540
|
+
def create_spt_correction(recorded_spt_n_value: int,
|
541
|
+
eop: float,
|
542
|
+
energy_percentage=0.6,
|
543
|
+
borehole_diameter=65.0,
|
544
|
+
rod_length=3.0,
|
545
|
+
hammer_type=HammerType.DONUT_1,
|
546
|
+
sampler_type=SamplerType.STANDARD,
|
547
|
+
opc_type: OPCType | str = OPCType.GIBBS,
|
548
|
+
apply_dilatancy_correction: bool = False
|
549
|
+
) -> OPC | DilatancyCorrection:
|
550
|
+
"""A factory function that encapsulates the creation of spt correction.
|
551
|
+
|
552
|
+
:param recorded_spt_n_value: Recorded SPT N-value from field.
|
553
|
+
:type recorded_spt_n_value: int
|
554
|
+
|
555
|
+
:param eop: Effective overburden pressure (:math:`kPa`).
|
556
|
+
:type eop: float
|
557
|
+
|
558
|
+
:param energy_percentage: Energy percentage reaching the tip of the
|
559
|
+
sampler, defaults to 0.6
|
560
|
+
:type energy_percentage: float, optional
|
561
|
+
|
562
|
+
:param borehole_diameter: Borehole diameter, defaults to 65.0 (mm).
|
563
|
+
:type borehole_diameter: float, optional
|
564
|
+
|
565
|
+
:param rod_length: Rod length, defaults to 3.0 (m).
|
566
|
+
:type rod_length: float, optional
|
567
|
+
|
568
|
+
:param hammer_type: Hammer type, defaults to :attr:`HammerType.DONUT_1`
|
569
|
+
:type hammer_type: HammerType, optional
|
570
|
+
|
571
|
+
:param sampler_type: Sampler type, defaults to :attr:`SamplerType.STANDARD`
|
572
|
+
:type sampler_type: SamplerType, optional
|
573
|
+
|
574
|
+
:param opc_type: Overburden Pressure Correction type to apply,
|
575
|
+
defaults to :attr:`OPCType.GIBBS`
|
576
|
+
:type opc_type: OPCType, optional
|
577
|
+
|
578
|
+
:param apply_dilatancy_correction: Indicates whether to apply dilatancy
|
579
|
+
correction, defaults to False.
|
580
|
+
:type apply_dilatancy_correction: bool, optional
|
581
|
+
"""
|
582
|
+
|
583
|
+
try:
|
584
|
+
opc_type = OPCType(str(opc_type).casefold())
|
585
|
+
except ValueError as e:
|
586
|
+
msg = (f"{opc_type=} is not supported, Supported "
|
587
|
+
f"types are: {list(OPCType)}")
|
588
|
+
raise ValueError(msg) from e
|
589
|
+
|
590
|
+
energy_correction = EnergyCorrection(
|
591
|
+
recorded_spt_n_value=recorded_spt_n_value,
|
592
|
+
energy_percentage=energy_percentage,
|
593
|
+
borehole_diameter=borehole_diameter,
|
594
|
+
rod_length=rod_length,
|
595
|
+
hammer_type=hammer_type,
|
596
|
+
sampler_type=sampler_type)
|
597
|
+
|
598
|
+
std_spt_n_value = energy_correction.standardized_spt_n_value()
|
599
|
+
|
600
|
+
opc_types = {OPCType.GIBBS: GibbsHoltzOPC,
|
601
|
+
OPCType.BAZARAA: BazaraaPeckOPC,
|
602
|
+
OPCType.PECK: PeckOPC,
|
603
|
+
OPCType.LIAO: LiaoWhitmanOPC,
|
604
|
+
OPCType.SKEMPTON: SkemptonOPC}
|
605
|
+
|
606
|
+
opc_class = opc_types[opc_type]
|
607
|
+
opc_corr = opc_class(std_spt_n_value=std_spt_n_value, eop=eop)
|
608
|
+
|
609
|
+
if apply_dilatancy_correction:
|
610
|
+
corr_spt_n_value = opc_corr.corrected_spt_n_value()
|
611
|
+
return DilatancyCorrection(corr_spt_n_value=corr_spt_n_value)
|
612
|
+
|
613
|
+
return opc_corr
|
@@ -1,6 +1,6 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: geolysis
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.5.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
|
@@ -28,6 +28,7 @@ Provides-Extra: dev
|
|
28
28
|
Requires-Dist: pytest; extra == "dev"
|
29
29
|
Requires-Dist: pytest-cov; extra == "dev"
|
30
30
|
Requires-Dist: coverage; extra == "dev"
|
31
|
+
Dynamic: license-file
|
31
32
|
|
32
33
|
<div align="center">
|
33
34
|
<img src="https://raw.githubusercontent.com/patrickboateng/geolysis/dev/docs/source/_static/branding/geolysislogo.svg"
|
@@ -147,7 +148,6 @@ SoilClf(symbol='SC', description='Clayey sands')
|
|
147
148
|
>>> aashto_clf = create_soil_classifier(liquid_limit=34.1,
|
148
149
|
... plastic_limit=21.1,
|
149
150
|
... fines=47.88,
|
150
|
-
... sand=37.84, # Sand is optional for AASHTO classification
|
151
151
|
... clf_type="AASHTO")
|
152
152
|
>>> clf = aashto_clf.classify()
|
153
153
|
>>> clf
|
@@ -0,0 +1,23 @@
|
|
1
|
+
geolysis/__init__.py,sha256=ZCOADVfMhsjfbWiOYyJ4i81gtOtXLxRJkaNaeO2q2Qw,122
|
2
|
+
geolysis/foundation.py,sha256=_oOv-JLl8WTT81WXNaIDZzXiVTL8EwGjXi9-kmbuNSA,11722
|
3
|
+
geolysis/soil_classifier.py,sha256=AaTgcFOqpqnYvoIzXlyPBjzYhSCtgsbRae_VzD_3C4Y,27056
|
4
|
+
geolysis/spt.py,sha256=Fe5tlqvTquyfw8lFEnNQtZrRXrG1lWnflX-w-Cx5Epo,18659
|
5
|
+
geolysis/bearing_capacity/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
6
|
+
geolysis/bearing_capacity/abc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
7
|
+
geolysis/bearing_capacity/abc/cohl/__init__.py,sha256=r-NG8fTPpNgqBriejIEkNNE3cX4X2rRqyCFYMK3RS3Y,5312
|
8
|
+
geolysis/bearing_capacity/abc/cohl/_core.py,sha256=t8nAr8ITAILQmbK5Rzie9ZCn6ODW87XLsiwULvyOMns,1741
|
9
|
+
geolysis/bearing_capacity/abc/cohl/bowles_abc.py,sha256=beYKA2yEEQ8mVKgEK6ZBlHuiWvDXE-jm5A6RhXXkPaI,4236
|
10
|
+
geolysis/bearing_capacity/abc/cohl/meyerhof_abc.py,sha256=deoFp8Tdy-eCA4-hOY6lPpvCp71rcqD9v3qhsM-H9vA,4202
|
11
|
+
geolysis/bearing_capacity/abc/cohl/terzaghi_abc.py,sha256=xYQ4moHm_2UDnUhyP1Uq54i7Yzo5l6GKjj380_prtRM,5453
|
12
|
+
geolysis/bearing_capacity/ubc/__init__.py,sha256=dwpPLRtFJ0ck0bOimGZA8zqqS8fp71_Qi0Av_A-iBkM,5956
|
13
|
+
geolysis/bearing_capacity/ubc/_core.py,sha256=Zq6DGAyrjw1OR2QZwShkdc_8BzEaKaqNNo70bhiWEu4,5858
|
14
|
+
geolysis/bearing_capacity/ubc/hansen_ubc.py,sha256=J3H8yZmrEC413pquMGbZ8Z7L47u9AXvtJbQOORvhsAU,7184
|
15
|
+
geolysis/bearing_capacity/ubc/terzaghi_ubc.py,sha256=k5P_TrEa7Uc17MbWmLrZDWlZJQLqOs01glQpfeJRxbc,6688
|
16
|
+
geolysis/bearing_capacity/ubc/vesic_ubc.py,sha256=_N4bkqYWVer7yxuFAbnEYay9BsPewbtfXgK6DJyy8hw,7416
|
17
|
+
geolysis/utils/__init__.py,sha256=Q3eBBOi_JKnydu6su-TswdI2bIT4PZ7V43NIIGaTj2w,2616
|
18
|
+
geolysis/utils/validators.py,sha256=ETvqwXtBFE17keDE5plYcSOztFNbSuJVqB6M6SmxBaQ,2556
|
19
|
+
geolysis-0.5.0.dist-info/licenses/LICENSE.txt,sha256=ap6sMs3lT7ICbEXBhgihwH1BTCVcjmCQkIkwVnil1Ak,1065
|
20
|
+
geolysis-0.5.0.dist-info/METADATA,sha256=AwMRfh8uVQ5fjX2Vw9q0NwBx8_LtB9gm4ITfxdBkRck,7368
|
21
|
+
geolysis-0.5.0.dist-info/WHEEL,sha256=tTnHoFhvKQHCh4jz3yCn0WPTYIy7wXx3CJtJ7SJGV7c,91
|
22
|
+
geolysis-0.5.0.dist-info/top_level.txt,sha256=9mnQgOaCRr11dtXff8X-q3FfXjRONd6kHseSy5q2y8g,9
|
23
|
+
geolysis-0.5.0.dist-info/RECORD,,
|
geolysis-0.4.4.dist-info/RECORD
DELETED
@@ -1,21 +0,0 @@
|
|
1
|
-
geolysis/__init__.py,sha256=MyIge95T6RDI2zo-8gn3ewgjx3Bs986rvy55fek6UV4,122
|
2
|
-
geolysis/foundation.py,sha256=M6m8Pb7Bn7jdfD_77_RSXpAzZVpAiyQoWu1jJi_LVDE,10149
|
3
|
-
geolysis/soil_classifier.py,sha256=vvO4OrxcXAqLe3a3c8jhkfIZWV375BnyefCXHNhQAaU,26760
|
4
|
-
geolysis/spt.py,sha256=WI2KhaljsZ17qNhi99pFLswgZ167N1rR1udTcs_Czvc,14232
|
5
|
-
geolysis/bearing_capacity/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
6
|
-
geolysis/bearing_capacity/abc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
7
|
-
geolysis/bearing_capacity/abc/cohl/__init__.py,sha256=fqG8lxcFUWUpaP3kAk4zFLmFdSWfKuZsU1H6QM5z5nQ,6922
|
8
|
-
geolysis/bearing_capacity/abc/cohl/bowles_abc.py,sha256=2S0EFRW-C2s5e3MF8wz-9JWov7NzNuWqJ4HlSuqMrS4,4231
|
9
|
-
geolysis/bearing_capacity/abc/cohl/meyerhof_abc.py,sha256=wdWYn58NG7sYc-8ML-Yf7kS4PZnpOqghu6gwaH7UFsg,4197
|
10
|
-
geolysis/bearing_capacity/abc/cohl/terzaghi_abc.py,sha256=SRawtG8M0jGGMmzEqOvu_nV1tJ-8wJCJQo4GepDREd8,5448
|
11
|
-
geolysis/bearing_capacity/ubc/__init__.py,sha256=BgByVUK3t_EH5MXnEkd0IQOxqJqabYJZ02EoJq3zIac,11126
|
12
|
-
geolysis/bearing_capacity/ubc/hansen_ubc.py,sha256=DM3gnF6OueUDbQq4L82bR7i2vFusr2x1uh3vmYfAKk4,7222
|
13
|
-
geolysis/bearing_capacity/ubc/terzaghi_ubc.py,sha256=-mgSgqhceKaEzR0_zOQ2-wJTDPNpi-VQ3gg_lTxcqm0,6710
|
14
|
-
geolysis/bearing_capacity/ubc/vesic_ubc.py,sha256=41TKVQf_5wsHTEuR08u4FS-Rtdc2WomV1JC9fBubKVY,7482
|
15
|
-
geolysis/utils/__init__.py,sha256=Q3eBBOi_JKnydu6su-TswdI2bIT4PZ7V43NIIGaTj2w,2616
|
16
|
-
geolysis/utils/validators.py,sha256=ETvqwXtBFE17keDE5plYcSOztFNbSuJVqB6M6SmxBaQ,2556
|
17
|
-
geolysis-0.4.4.dist-info/LICENSE.txt,sha256=ap6sMs3lT7ICbEXBhgihwH1BTCVcjmCQkIkwVnil1Ak,1065
|
18
|
-
geolysis-0.4.4.dist-info/METADATA,sha256=8X06eJ1edfSgMt4htbXtylGUrsdtvIoLmTYYVRYFffY,7444
|
19
|
-
geolysis-0.4.4.dist-info/WHEEL,sha256=52BFRY2Up02UkjOa29eZOS2VxUrpPORXg1pkohGGUS8,91
|
20
|
-
geolysis-0.4.4.dist-info/top_level.txt,sha256=9mnQgOaCRr11dtXff8X-q3FfXjRONd6kHseSy5q2y8g,9
|
21
|
-
geolysis-0.4.4.dist-info/RECORD,,
|
File without changes
|
File without changes
|