Skip to content

Commit 7fd3dac

Browse files
authored
Merge pull request #20 from TchilDill/extras-doc-unit-testing-and-more
v0.3.1
2 parents 6de6a08 + fceb497 commit 7fd3dac

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ and [PEP 440](https://www.python.org/dev/peps/pep-0440/).
1111
## [0.4.0] - 2023-XX-XX (not released yet)
1212
- *blank*
1313

14+
## [0.3.1] - 2023-05-16
15+
- fixed bug in `openpile.utils.mtcurves.cowden_clay()` and `openpile.soilmodels.Cowden_clay` that was amplifying
16+
the soil resistance and yielding unrealistic forces in the pile.
17+
1418
## [0.3.0] - 2023-05-02
1519
- new method to retrieve the p-y mobilisation of springs in Results via the `.py_mobilization()`
1620
- update to the connectivity plot `openpile.construct.Model.plot()` that adds the soil profile to the plot

setup.cfg

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ install_requires =
2929
matplotlib
3030
numba
3131
scipy
32-
fpdf2
3332
pydantic
3433
typing_extensions
3534
[options.extras_require]

src/openpile/globals.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# version of the package
2-
VERSION = "0.3.0"
2+
VERSION = "0.3.1"

src/openpile/utils/mt_curves.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def cowden_clay(
6565
t, m = conic(psi_max, n, k, m_max, output_length)
6666

6767
# return non-normalised curve
68-
return m * (Su * D**2), t * (Su / G0)
68+
return m * (Su * D), t * (Su / G0)
6969

7070

7171
@njit(cache=True)

0 commit comments

Comments
 (0)