geolysis 0.17.0__tar.gz → 0.19.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 (33) hide show
  1. {geolysis-0.17.0 → geolysis-0.19.0}/PKG-INFO +1 -1
  2. {geolysis-0.17.0 → geolysis-0.19.0}/geolysis/__init__.py +1 -1
  3. {geolysis-0.17.0 → geolysis-0.19.0}/geolysis/bearing_capacity/abc/_cohl/_core.py +10 -8
  4. {geolysis-0.17.0 → geolysis-0.19.0}/geolysis.egg-info/PKG-INFO +1 -1
  5. {geolysis-0.17.0 → geolysis-0.19.0}/LICENSE.txt +0 -0
  6. {geolysis-0.17.0 → geolysis-0.19.0}/README.md +0 -0
  7. {geolysis-0.17.0 → geolysis-0.19.0}/geolysis/bearing_capacity/__init__.py +0 -0
  8. {geolysis-0.17.0 → geolysis-0.19.0}/geolysis/bearing_capacity/abc/__init__.py +0 -0
  9. {geolysis-0.17.0 → geolysis-0.19.0}/geolysis/bearing_capacity/abc/_cohl/__init__.py +0 -0
  10. {geolysis-0.17.0 → geolysis-0.19.0}/geolysis/bearing_capacity/abc/_cohl/bowles_abc.py +0 -0
  11. {geolysis-0.17.0 → geolysis-0.19.0}/geolysis/bearing_capacity/abc/_cohl/meyerhof_abc.py +0 -0
  12. {geolysis-0.17.0 → geolysis-0.19.0}/geolysis/bearing_capacity/abc/_cohl/terzaghi_abc.py +0 -0
  13. {geolysis-0.17.0 → geolysis-0.19.0}/geolysis/bearing_capacity/ubc/__init__.py +0 -0
  14. {geolysis-0.17.0 → geolysis-0.19.0}/geolysis/bearing_capacity/ubc/_core.py +0 -0
  15. {geolysis-0.17.0 → geolysis-0.19.0}/geolysis/bearing_capacity/ubc/_terzaghi_ubc.py +0 -0
  16. {geolysis-0.17.0 → geolysis-0.19.0}/geolysis/bearing_capacity/ubc/_vesic_ubc.py +0 -0
  17. {geolysis-0.17.0 → geolysis-0.19.0}/geolysis/exceptions.py +0 -0
  18. {geolysis-0.17.0 → geolysis-0.19.0}/geolysis/foundation.py +0 -0
  19. {geolysis-0.17.0 → geolysis-0.19.0}/geolysis/soil_classifier.py +0 -0
  20. {geolysis-0.17.0 → geolysis-0.19.0}/geolysis/spt.py +0 -0
  21. {geolysis-0.17.0 → geolysis-0.19.0}/geolysis/utils/__init__.py +0 -0
  22. {geolysis-0.17.0 → geolysis-0.19.0}/geolysis/utils/math.py +0 -0
  23. {geolysis-0.17.0 → geolysis-0.19.0}/geolysis.egg-info/SOURCES.txt +0 -0
  24. {geolysis-0.17.0 → geolysis-0.19.0}/geolysis.egg-info/dependency_links.txt +0 -0
  25. {geolysis-0.17.0 → geolysis-0.19.0}/geolysis.egg-info/requires.txt +0 -0
  26. {geolysis-0.17.0 → geolysis-0.19.0}/geolysis.egg-info/top_level.txt +0 -0
  27. {geolysis-0.17.0 → geolysis-0.19.0}/pyproject.toml +0 -0
  28. {geolysis-0.17.0 → geolysis-0.19.0}/setup.cfg +0 -0
  29. {geolysis-0.17.0 → geolysis-0.19.0}/setup.py +0 -0
  30. {geolysis-0.17.0 → geolysis-0.19.0}/tests/test_docs.py +0 -0
  31. {geolysis-0.17.0 → geolysis-0.19.0}/tests/test_foundation.py +0 -0
  32. {geolysis-0.17.0 → geolysis-0.19.0}/tests/test_soil_classifier.py +0 -0
  33. {geolysis-0.17.0 → geolysis-0.19.0}/tests/test_spt.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: geolysis
3
- Version: 0.17.0
3
+ Version: 0.19.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.17.0"
3
+ __version__ = "0.19.0"
4
4
 
5
5
  __all__ = ["foundation", "soil_classifier", "spt", "bearing_capacity"]
@@ -25,10 +25,10 @@ class AllowableBearingCapacity(ABC):
25
25
  MAX_TOL_SETTLEMENT = 25.4
26
26
 
27
27
  def __init__(
28
- self,
29
- corrected_spt_n_value: float,
30
- tol_settlement: float,
31
- foundation_size: Foundation,
28
+ self,
29
+ corrected_spt_n_value: float,
30
+ tol_settlement: float,
31
+ foundation_size: Foundation,
32
32
  ) -> None:
33
33
  self.corrected_spt_n_value = corrected_spt_n_value
34
34
  self.tol_settlement = tol_settlement
@@ -42,8 +42,8 @@ class AllowableBearingCapacity(ABC):
42
42
  @corrected_spt_n_value.setter
43
43
  @validate_params
44
44
  def corrected_spt_n_value(
45
- self,
46
- corrected_spt_n_value: Annotated[float, MustBeNonNegative],
45
+ self,
46
+ corrected_spt_n_value: Annotated[float, MustBeNonNegative],
47
47
  ):
48
48
  self._corrected_spt_n_value = corrected_spt_n_value
49
49
 
@@ -55,8 +55,10 @@ class AllowableBearingCapacity(ABC):
55
55
  @tol_settlement.setter
56
56
  @validate_params
57
57
  def tol_settlement(
58
- self,
59
- tol_settlement: Annotated[float, MustBeLessThanOrEqual(25.4)],
58
+ self,
59
+ tol_settlement: Annotated[
60
+ float, MustBeNonNegative, MustBeLessThanOrEqual(25.4)
61
+ ],
60
62
  ):
61
63
  self._tol_settlement = tol_settlement
62
64
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: geolysis
3
- Version: 0.17.0
3
+ Version: 0.19.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