
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
.. image:: https://travis-ci.org/eng-tools/geofound.svg?branch=master :target: https://travis-ci.org/eng-tools/geofound :alt: Testing Status
.. image:: https://img.shields.io/pypi/v/geofound.svg :target: https://pypi.python.org/pypi/geofound :alt: PyPi version
.. image:: https://coveralls.io/repos/github/eng-tools/geofound/badge.svg :target: https://coveralls.io/github/eng-tools/geofound
.. image:: https://img.shields.io/badge/license-MIT-blue.svg :target: https://github.com/eng-tools/geofound/blob/master/LICENSE :alt: License
.. image:: https://circleci.com/gh/eng-tools/geofound.svg?style=svg :target: https://circleci.com/gh/eng-tools/geofound :alt: Build Status
.. image:: https://zenodo.org/badge/112601559.svg :target: https://zenodo.org/badge/latestdoi/112601559 :alt: DOI
geofound
A Python package to assess the settlement and bearing capacity of foundations.
The geofound package relies on two main Objects, the Foundation object and the Soil object.
These objects are inherited from the sfsimodels python module.
.. code-block:: python
import geofound
import geofound.settlement
import geofound.capacity
length = 21.7
width = 1.5 # metres
depth = 1.5 # metres
phi = 38
cohesion = 0
unit_weight = 18.5 # submerged
youngs_modulus_soil = 30000
fd = geofound.create_foundation(length, width, depth)
sl = geofound.create_soil(phi, cohesion, unit_weight)
sl.unit_sat_weight = 18.5
q_lim = geofound.capacity.capacity_vesic_1975(sl, fd)
p_max = q_lim * length * width
print(' ')
print('Ultimate bearing stress is q_lim = ' + str(round(q_lim,0)) + ' kPa')
print('Ultimate load is Q_lim = ' + str(round(p_max, 0)) + ' kN')
and for settlement.
.. code-block:: python
load = 21484
s = geofound.settlement.settlement_schmertmann(sl, fd, load, youngs_modulus_soil)
print(' ')
print('Settlement is si = ' + str(round(s,2)) + ' m')
http://geo.cv.nctu.edu.tw/foundation/download/BearingCapacityOfFoundations.pdf
http://geo.cv.nctu.edu.tw/foundation/download/FoundationsSettlements.pdf
http://geo.cv.nctu.edu.tw/foundation/download/SchmertmannMethod.pdf
FAQs
A package to assess the bearing capacity and settlement of geofound
We found that geofound demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.