geolysis 0.13.0__tar.gz → 0.14.0__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 (32) hide show
  1. {geolysis-0.13.0 → geolysis-0.14.0}/PKG-INFO +1 -1
  2. {geolysis-0.13.0 → geolysis-0.14.0}/geolysis/__init__.py +1 -1
  3. {geolysis-0.13.0 → geolysis-0.14.0}/geolysis/bearing_capacity/ubc/__init__.py +13 -16
  4. {geolysis-0.13.0 → geolysis-0.14.0}/geolysis.egg-info/PKG-INFO +1 -1
  5. {geolysis-0.13.0 → geolysis-0.14.0}/LICENSE.txt +0 -0
  6. {geolysis-0.13.0 → geolysis-0.14.0}/README.md +0 -0
  7. {geolysis-0.13.0 → geolysis-0.14.0}/geolysis/bearing_capacity/__init__.py +0 -0
  8. {geolysis-0.13.0 → geolysis-0.14.0}/geolysis/bearing_capacity/abc/__init__.py +0 -0
  9. {geolysis-0.13.0 → geolysis-0.14.0}/geolysis/bearing_capacity/abc/_cohl/__init__.py +0 -0
  10. {geolysis-0.13.0 → geolysis-0.14.0}/geolysis/bearing_capacity/abc/_cohl/_core.py +0 -0
  11. {geolysis-0.13.0 → geolysis-0.14.0}/geolysis/bearing_capacity/abc/_cohl/bowles_abc.py +0 -0
  12. {geolysis-0.13.0 → geolysis-0.14.0}/geolysis/bearing_capacity/abc/_cohl/meyerhof_abc.py +0 -0
  13. {geolysis-0.13.0 → geolysis-0.14.0}/geolysis/bearing_capacity/abc/_cohl/terzaghi_abc.py +0 -0
  14. {geolysis-0.13.0 → geolysis-0.14.0}/geolysis/bearing_capacity/ubc/_core.py +0 -0
  15. {geolysis-0.13.0 → geolysis-0.14.0}/geolysis/bearing_capacity/ubc/_terzaghi_ubc.py +0 -0
  16. {geolysis-0.13.0 → geolysis-0.14.0}/geolysis/bearing_capacity/ubc/_vesic_ubc.py +0 -0
  17. {geolysis-0.13.0 → geolysis-0.14.0}/geolysis/foundation.py +0 -0
  18. {geolysis-0.13.0 → geolysis-0.14.0}/geolysis/soil_classifier.py +0 -0
  19. {geolysis-0.13.0 → geolysis-0.14.0}/geolysis/spt.py +0 -0
  20. {geolysis-0.13.0 → geolysis-0.14.0}/geolysis/utils/__init__.py +0 -0
  21. {geolysis-0.13.0 → geolysis-0.14.0}/geolysis/utils/math.py +0 -0
  22. {geolysis-0.13.0 → geolysis-0.14.0}/geolysis.egg-info/SOURCES.txt +0 -0
  23. {geolysis-0.13.0 → geolysis-0.14.0}/geolysis.egg-info/dependency_links.txt +0 -0
  24. {geolysis-0.13.0 → geolysis-0.14.0}/geolysis.egg-info/requires.txt +0 -0
  25. {geolysis-0.13.0 → geolysis-0.14.0}/geolysis.egg-info/top_level.txt +0 -0
  26. {geolysis-0.13.0 → geolysis-0.14.0}/pyproject.toml +0 -0
  27. {geolysis-0.13.0 → geolysis-0.14.0}/setup.cfg +0 -0
  28. {geolysis-0.13.0 → geolysis-0.14.0}/setup.py +0 -0
  29. {geolysis-0.13.0 → geolysis-0.14.0}/tests/test_docs.py +0 -0
  30. {geolysis-0.13.0 → geolysis-0.14.0}/tests/test_foundation.py +0 -0
  31. {geolysis-0.13.0 → geolysis-0.14.0}/tests/test_soil_classifier.py +0 -0
  32. {geolysis-0.13.0 → geolysis-0.14.0}/tests/test_spt.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: geolysis
3
- Version: 0.13.0
3
+ Version: 0.14.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
@@ -1,5 +1,5 @@
1
1
  from . import bearing_capacity, foundation, soil_classifier, spt
2
2
 
3
- __version__ = "0.13.0"
3
+ __version__ = "0.14.0"
4
4
 
5
5
  __all__ = ["foundation", "soil_classifier", "spt", "bearing_capacity"]
@@ -33,9 +33,6 @@ class UBCType(AbstractStrEnum):
33
33
  the ultimate bearing capacity of soil.
34
34
  """
35
35
 
36
- HANSEN = enum.auto()
37
- """Hansen's method for calculating ultimate bearing capacity."""
38
-
39
36
  TERZAGHI = enum.auto()
40
37
  """Terzaghi's method for calculating ultimate bearing capacity."""
41
38
 
@@ -56,19 +53,19 @@ ubc_classes = {
56
53
 
57
54
  @validate_params
58
55
  def create_ubc_4_all_soil_types(
59
- friction_angle: float,
60
- cohesion: float,
61
- moist_unit_wgt: float,
62
- depth: float,
63
- width: float,
64
- length: Optional[float] = None,
65
- saturated_unit_wgt: float = 20.5,
66
- eccentricity: float = 0.0,
67
- ground_water_level: Optional[float] = inf,
68
- load_angle: float = 0.0,
69
- apply_local_shear: bool = False,
70
- shape: Shape | str = "square",
71
- ubc_type: Annotated[UBCType | str, MustBeMemberOf(UBCType)] = "vesic",
56
+ friction_angle: float,
57
+ cohesion: float,
58
+ moist_unit_wgt: float,
59
+ depth: float,
60
+ width: float,
61
+ length: Optional[float] = None,
62
+ saturated_unit_wgt: float = 20.5,
63
+ eccentricity: float = 0.0,
64
+ ground_water_level: Optional[float] = inf,
65
+ load_angle: float = 0.0,
66
+ apply_local_shear: bool = False,
67
+ shape: Shape | str = "square",
68
+ ubc_type: Annotated[UBCType | str, MustBeMemberOf(UBCType)] = "vesic",
72
69
  ) -> UltimateBearingCapacity:
73
70
  r"""A factory function that encapsulate the creation of ultimate
74
71
  bearing capacity.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: geolysis
3
- Version: 0.13.0
3
+ Version: 0.14.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
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes