Skip to content

Commit be7f5ea

Browse files
authored
Merge pull request #26 from TchilDill/extras-doc-unit-testing-and-more
v0.7.0
2 parents 451e8be + cbbf7b1 commit be7f5ea

21 files changed

+1021
-251
lines changed

.vscode/settings.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@
44
],
55
"python.testing.unittestEnabled": false,
66
"python.testing.pytestEnabled": true,
7-
"python.formatting.provider": "black"
7+
"python.formatting.provider": "black",
8+
"editor.inlineSuggest.showToolbar": "onHover"
89
}

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
77
and this project adheres to [Semantic Versioning](http://semver.org/),
88
and [PEP 440](https://www.python.org/dev/peps/pep-0440/).
99

10+
## [0.7.0] - 2023-11-12
11+
12+
### Added
13+
14+
- Added soil models:
15+
- `openpile.soilmodels.Bothkennar_clay` from the PISA joint-industry project
16+
1017
## [0.6.0] - 2023-10-23
1118

1219
### Added
@@ -19,6 +26,7 @@ and [PEP 440](https://www.python.org/dev/peps/pep-0440/).
1926
- `openpile.utils.Hb_curves.custom_pisa_sand` and `openpile.utils.Hb_curves.custom_pisa_clay`
2027
- `openpile.utils.Mb_curves.custom_pisa_sand` and `openpile.utils.Mb_curves.custom_pisa_clay`
2128
- added soil models:
29+
- `openpile.soilmodels.Bothkennar_clay` from the PISA joint-industry project
2230
- `openpile.soilmodels.Custom_pisa_sand` and `openpile.soilmodels.Custom_pisa_clay`, these models can be used to customise PISA formulations based on external sources, such as an FE model.
2331
- new functions to calculate Dunkirk Sand and Cowden Clay normalized parameters, these functions are in the module: `openpile.utils.multipliers` and are the following: `get_cowden_clay_(..)_norm_param()` and `get_dunkirk_sand_(..)_norm_param()`.
2432

docs/.DS_Store

0 Bytes
Binary file not shown.
1.15 KB
Loading

docs/source/conf.py

+10
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
"sphinx.ext.viewcode",
3232
"sphinx.ext.autodoc",
3333
"sphinx.ext.todo",
34+
"sphinx_copybutton",
3435
"sphinx.ext.doctest",
3536
"matplotlib.sphinxext.plot_directive",
3637
]
@@ -54,6 +55,15 @@
5455
templates_path = ["_templates"]
5556
exclude_patterns = []
5657

58+
# option for the copy button extension
59+
copybutton_prompt_text = r">>> |\.\.\. "
60+
copybutton_prompt_is_regexp = True
61+
62+
# option for matplotlib extension
63+
plot_include_source = True
64+
plot_html_show_source_link = False
65+
plot_html_show_formats = False
66+
5767
# -- Options for LaTeX output ------------------------------------------------
5868
latex_engine = "pdflatex"
5969
numfig = True

docs/source/introsoilmodels.rst

+4
Original file line numberDiff line numberDiff line change
@@ -47,5 +47,9 @@ Please refer to the :ref:`ApplicationProgrammingInterface` for more details and
4747
Houlsby, G. T., Gavin, K. G., Igoe, D. J. P., Jardine, R. J., Martin, C. M., McAdam, R. A.,
4848
Pedro, A. M. G. & Potts, D. M. (2020). PISA design model for monopiles for offshore wind
4949
turbines: application to a marine sand. Géotechnique, https://doi.org/10.1680/jgeot.18.P.277.
50+
.. [BABH20] Burd, H. J., Abadie, C. N., Byrne, B. W., Houlsby, G. T., Martin, C. M., McAdam, R. A.,
51+
Jardine, R.J., Pedro, A.M., Potts, D.M., Taborda, D.M., Zdravković, L., and Andrade, M.P.
52+
(2020). Application of the PISA Design Model to Monopiles Embedded in Layered Soils.
53+
Géotechnique 70(11): 1-55. https://doi.org/10.1680/jgeot.20.PISA.009
5054
.. [Rees97] Reese, L.C. (1997), Analysis of Laterally Loaded Piles in Weak Rock, Journal of Geotechnical
5155
and Geoenvironmental Engineering, ASCE, vol. 123 (11) Nov., ASCE, pp. 1010-1017.

0 commit comments

Comments
 (0)