ge.site — API reference¶
SPT¶
spt_n60
¶
spt_n60(N: Union[float, ndarray], ER: float = 60.0, Cb: float = 1.0, Cs: float = 1.0, Cr: float = 1.0) -> Union[float, np.ndarray]
Compute the energy-corrected SPT blow count N₆₀.
.. math::
N_{60} = N \times \frac{ER}{60} \times C_b \times C_s \times C_r
\qquad \text{[Skempton, 1986]}
| PARAMETER | DESCRIPTION |
|---|---|
N
|
Field blow count (blows per 300 mm).
TYPE:
|
ER
|
Energy ratio of the hammer (%). Safety hammer ≈ 60, donut hammer ≈ 45, automatic ≈ 80–95.
TYPE:
|
Cb
|
Borehole diameter correction (1.0 for 65–115 mm, 1.05 for 150 mm, 1.15 for 200 mm).
TYPE:
|
Cs
|
Sampler correction (1.0 for standard, 1.1–1.3 without liner).
TYPE:
|
Cr
|
Rod length correction (0.75 for 3–4 m, 0.85 for 4–6 m, 0.95 for 6–10 m, 1.0 for 10–30 m).
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
float or ndarray
|
Energy-corrected blow count N₆₀. |
References
Skempton (1986); Das (2021), Table 3.8.
Examples:
>>> from geoeq.site.spt import spt_n60
>>> spt_n60(30, ER=72, Cb=1.0, Cs=1.0, Cr=0.95)
34.2
Source code in geoeq/site/spt.py
spt_n160
¶
spt_n160(N60: Union[float, ndarray], sigma_v: Union[float, ndarray], method: str = 'liao_whitman', pa: float = 100.0) -> Union[float, np.ndarray]
Compute the overburden-corrected SPT blow count (N₁)₆₀.
.. math::
(N_1)_{60} = C_N \times N_{60}
| PARAMETER | DESCRIPTION |
|---|---|
N60
|
Energy-corrected blow count.
TYPE:
|
sigma_v
|
Effective vertical overburden stress (kPa).
TYPE:
|
method
|
Correction method:
TYPE:
|
pa
|
Atmospheric pressure (kPa).
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
float or ndarray
|
Overburden-corrected blow count (N₁)₆₀. Capped so CN ≤ 2.0. |
References
Liao & Whitman (1986); Skempton (1986); Peck et al. (1974).
Examples:
>>> from geoeq.site.spt import spt_n160
>>> round(spt_n160(20, sigma_v=100), 1)
20.0
>>> round(spt_n160(20, sigma_v=50), 1)
28.3
Source code in geoeq/site/spt.py
spt_n160cs
¶
spt_n160cs(N160: Union[float, ndarray], FC: Union[float, ndarray]) -> Union[float, np.ndarray]
Fines-content-corrected (N₁)₆₀cs for liquefaction analysis.
.. math::
(N_1)_{60cs} = \alpha + \beta \times (N_1)_{60}
where α and β depend on fines content FC:
- FC ≤ 5%: α = 0, β = 1.0
- 5 < FC < 35%: α = exp(1.76 − 190/FC²), β = 0.99 + FC^1.5 / 1000
- FC ≥ 35%: α = 5.0, β = 1.2
| PARAMETER | DESCRIPTION |
|---|---|
N160
|
Overburden-corrected blow count (N₁)₆₀.
TYPE:
|
FC
|
Fines content (%).
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
float or ndarray
|
Fines-corrected (N₁)₆₀cs. |
References
Youd, T. L. et al. (2001). Liquefaction Resistance of Soils. JGGE, ASCE, 127(10), 817–833.
Examples:
>>> from geoeq.site.spt import spt_n160cs
>>> round(spt_n160cs(15, FC=3), 1)
15.0
>>> round(spt_n160cs(15, FC=20), 1)
19.6
Source code in geoeq/site/spt.py
spt_friction_angle
¶
spt_friction_angle(N: Union[float, ndarray], sigma_v: Optional[Union[float, ndarray]] = None, method: str = 'hatanaka', pa: float = 100.0) -> Union[float, np.ndarray]
Estimate friction angle φ' from SPT blow count.
| PARAMETER | DESCRIPTION |
|---|---|
N
|
Blow count. Interpretation depends on method:
-
TYPE:
|
sigma_v
|
Effective overburden stress (kPa). Not used by all methods.
TYPE:
|
method
|
TYPE:
|
pa
|
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
float or ndarray
|
Friction angle φ' (degrees). |
References
Hatanaka & Uchida (1996); Kulhawy & Mayne (1990); Peck et al. (1974).
Examples:
>>> from geoeq.site.spt import spt_friction_angle
>>> round(spt_friction_angle(20, method='hatanaka'), 1)
40.0
Source code in geoeq/site/spt.py
spt_su
¶
spt_su(N60: Union[float, ndarray], method: str = 'stroud', PI: Optional[float] = None) -> Union[float, np.ndarray]
Estimate undrained shear strength Su from SPT.
| PARAMETER | DESCRIPTION |
|---|---|
N60
|
Energy-corrected blow count N₆₀.
TYPE:
|
method
|
TYPE:
|
PI
|
Plasticity index (%). Required for
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
float or ndarray
|
Undrained shear strength Su (kPa). |
References
Stroud (1974); Hara et al. (1974).
Examples:
>>> from geoeq.site.spt import spt_su
>>> round(spt_su(10, method='hara'), 1)
152.4
Source code in geoeq/site/spt.py
spt_dr
¶
Estimate relative density Dr from SPT.
| PARAMETER | DESCRIPTION |
|---|---|
N160
|
Overburden-corrected (N₁)₆₀.
TYPE:
|
method
|
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
float or ndarray
|
Relative density Dr (%). |
References
Meyerhof (1957); Skempton (1986); Kulhawy & Mayne (1990).
Examples:
>>> from geoeq.site.spt import spt_dr
>>> round(spt_dr(20, method='meyerhof'), 0)
98.0
Source code in geoeq/site/spt.py
spt_modulus
¶
Estimate elastic (Young's) modulus Es from SPT.
| PARAMETER | DESCRIPTION |
|---|---|
N
|
SPT blow count (N or N₆₀ depending on source — typically N₆₀).
TYPE:
|
soil_type
|
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
float or ndarray
|
Elastic modulus Es (kPa). |
References
Bowles (1996), Table 5.6.
Examples:
>>> from geoeq.site.spt import spt_modulus
>>> spt_modulus(20, soil_type='sand')
17500.0
Source code in geoeq/site/spt.py
CPT¶
cpt_normalize
¶
cpt_normalize(qt: Union[float, ndarray], fs: Union[float, ndarray], sigma_v: Union[float, ndarray], sigma_v_eff: Union[float, ndarray], u2: Union[float, ndarray] = 0.0, u0: Union[float, ndarray] = 0.0) -> Dict[str, Union[float, np.ndarray]]
Compute normalized CPT parameters.
.. math::
Q_t = \frac{q_t - \sigma_{v0}}{\sigma'_{v0}} \qquad
F_r = \frac{f_s}{q_t - \sigma_{v0}} \times 100 \qquad
B_q = \frac{u_2 - u_0}{q_t - \sigma_{v0}}
| PARAMETER | DESCRIPTION |
|---|---|
qt
|
Corrected cone resistance (kPa).
TYPE:
|
fs
|
Sleeve friction (kPa).
TYPE:
|
sigma_v
|
Total vertical stress σ_v0 (kPa).
TYPE:
|
sigma_v_eff
|
Effective vertical stress σ'_v0 (kPa).
TYPE:
|
u2
|
Pore pressure at shoulder (kPa).
TYPE:
|
u0
|
Equilibrium pore pressure (kPa).
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
dict
|
|
References
Robertson (1990, 2009).
Examples:
>>> from geoeq.site.cpt import cpt_normalize
>>> res = cpt_normalize(qt=5000, fs=50, sigma_v=100, sigma_v_eff=60)
>>> round(res['Qt'], 1)
81.7
Source code in geoeq/site/cpt.py
cpt_ic
¶
Compute the Soil Behaviour Type Index Ic.
.. math::
I_c = \sqrt{(3.47 - \log Q_t)^2 + (\log F_r + 1.22)^2}
| PARAMETER | DESCRIPTION |
|---|---|
Qt
|
Normalized cone resistance.
TYPE:
|
Fr
|
Normalized friction ratio (%).
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
float or ndarray
|
Soil behaviour type index Ic. |
References
Robertson (2009), Eq. 2.
Examples:
>>> from geoeq.site.cpt import cpt_ic
>>> round(cpt_ic(Qt=80, Fr=1.0), 2)
1.62
Source code in geoeq/site/cpt.py
cpt_sbt
¶
cpt_sbt(Qt: Union[float, ndarray], Fr: Union[float, ndarray]) -> Dict[str, Union[int, str, float, np.ndarray]]
Robertson (2009) Soil Behaviour Type classification from Ic.
Zone boundaries (Robertson 2009):
- Ic > 3.60 → Zone 2: Organic soils — clay
- 2.95 < Ic ≤ 3.60 → Zone 3: Clay — silty clay
- 2.60 < Ic ≤ 2.95 → Zone 4: Silt mixtures
- 2.05 < Ic ≤ 2.60 → Zone 5: Sand mixtures
- 1.31 < Ic ≤ 2.05 → Zone 6: Sands — clean sand
- Ic ≤ 1.31 → Zone 7: Gravelly sand to dense sand
| PARAMETER | DESCRIPTION |
|---|---|
Qt
|
Normalized cone resistance.
TYPE:
|
Fr
|
Normalized friction ratio (%).
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
dict
|
|
References
Robertson (2009), Table 1.
Examples:
>>> from geoeq.site.cpt import cpt_sbt
>>> res = cpt_sbt(Qt=80, Fr=1.0)
>>> res['zone']
6
Source code in geoeq/site/cpt.py
cpt_friction_angle
¶
cpt_friction_angle(qt: Union[float, ndarray], sigma_v_eff: Union[float, ndarray]) -> Union[float, np.ndarray]
Estimate drained friction angle from CPT.
.. math::
\phi' = \arctan\!\bigl[0.1 + 0.38 \log(q_t / \sigma'_{v0})\bigr]
\qquad \text{[Robertson \& Campanella, 1983]}
| PARAMETER | DESCRIPTION |
|---|---|
qt
|
Corrected cone resistance (kPa).
TYPE:
|
sigma_v_eff
|
Effective vertical stress (kPa).
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
float or ndarray
|
Friction angle φ' (degrees). |
Examples:
>>> from geoeq.site.cpt import cpt_friction_angle
>>> round(cpt_friction_angle(5000, 60), 1)
35.1
Source code in geoeq/site/cpt.py
cpt_su
¶
cpt_su(qt: Union[float, ndarray], sigma_v: Union[float, ndarray], Nkt: float = 14.0) -> Union[float, np.ndarray]
Estimate undrained shear strength from CPT.
.. math::
S_u = \frac{q_t - \sigma_{v0}}{N_{kt}}
| PARAMETER | DESCRIPTION |
|---|---|
qt
|
Corrected cone resistance (kPa).
TYPE:
|
sigma_v
|
Total vertical stress (kPa).
TYPE:
|
Nkt
|
Cone factor (typically 10–20; 14 is common for medium- sensitivity clays).
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
float or ndarray
|
Undrained shear strength Su (kPa). |
References
Lunne et al. (1997), Ch. 6.
Examples:
>>> from geoeq.site.cpt import cpt_su
>>> cpt_su(qt=1000, sigma_v=100, Nkt=14)
64.28571428571429
Source code in geoeq/site/cpt.py
cpt_dr
¶
cpt_dr(qc: Union[float, ndarray], sigma_v_eff: Union[float, ndarray], C0: float = 157.0, C1: float = 0.55, C2: float = 2.41) -> Union[float, np.ndarray]
Estimate relative density from CPT for normally consolidated uncemented quartz sands.
.. math::
D_r = \frac{1}{C_2} \ln\!\left(\frac{q_c}{C_0 \,(\sigma'_{v0})^{C_1}}\right)
\qquad \text{[Baldi et al., 1986]}
Default coefficients C₀ = 157, C₁ = 0.55, C₂ = 2.41 are for Ticino sand (Baldi et al., 1986).
| PARAMETER | DESCRIPTION |
|---|---|
qc
|
Cone resistance (kPa).
TYPE:
|
sigma_v_eff
|
Effective vertical stress (kPa).
TYPE:
|
C0
|
Calibration constants.
TYPE:
|
C1
|
Calibration constants.
TYPE:
|
C2
|
Calibration constants.
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
float or ndarray
|
Relative density Dr (fraction, 0–1). |
References
Baldi et al. (1986).
Examples:
>>> from geoeq.site.cpt import cpt_dr
>>> round(cpt_dr(10000, 100) * 100, 0)
55.0
Source code in geoeq/site/cpt.py
cpt_modulus
¶
cpt_modulus(qt: Union[float, ndarray], sigma_v: Union[float, ndarray], Ic: Optional[Union[float, ndarray]] = None, alpha: Optional[float] = None) -> Union[float, np.ndarray]
Estimate constrained modulus M from CPT.
.. math::
M = \alpha_M \times (q_t - \sigma_{v0})
where α_M depends on Ic (Robertson, 2009):
- Ic > 2.2 (clays): α_M = Qt when Qt < 14, else α_M = 14
- Ic ≤ 2.2 (sands): α_M = 0.0188 × 10^(0.55 Ic + 1.68)
| PARAMETER | DESCRIPTION |
|---|---|
qt
|
Corrected cone resistance (kPa).
TYPE:
|
sigma_v
|
Total vertical stress (kPa).
TYPE:
|
Ic
|
Soil behaviour type index. If None, alpha must be provided.
TYPE:
|
alpha
|
Direct multiplier override.
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
float or ndarray
|
Constrained modulus M (kPa). |
References
Robertson (2009), Eq. 11.
Examples:
>>> from geoeq.site.cpt import cpt_modulus
>>> cpt_modulus(qt=5000, sigma_v=100, alpha=5)
24500.0
Source code in geoeq/site/cpt.py
cpt_sbt_plot
¶
cpt_sbt_plot(Qt: Union[float, list, ndarray], Fr: Union[float, list, ndarray], labels=None, ax=None, save_as: Optional[str] = None) -> Dict
Plot data on the Robertson (2009) SBT chart (Qt vs Fr).
| PARAMETER | DESCRIPTION |
|---|---|
Qt
|
Normalized cone resistance.
TYPE:
|
Fr
|
Normalized friction ratio (%).
TYPE:
|
labels
|
Labels for each data point.
TYPE:
|
ax
|
TYPE:
|
save_as
|
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
dict
|
|
Examples:
>>> from geoeq.site.cpt import cpt_sbt_plot
>>> res = cpt_sbt_plot([80, 20, 5], [1.0, 3.0, 5.0])
Source code in geoeq/site/cpt.py
| Python | |
|---|---|
430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 | |
Field vane shear¶
vane_su
¶
Undrained shear strength from field vane torque.
For a rectangular vane with height H and diameter D, assuming uniform shear stress on the cylindrical surface and both end caps:
.. math::
S_u = \frac{T}{\pi \left(\frac{D^2 H}{2} + \frac{D^3}{6}\right)}
\qquad \text{[ASTM D2573]}
For the standard vane with H/D = 2:
.. math::
S_u = \frac{6\,T}{7\,\pi\,D^3}
| PARAMETER | DESCRIPTION |
|---|---|
T
|
Maximum torque (kN·m).
TYPE:
|
D
|
Vane diameter (m). Standard sizes: 0.0508 m (2 in.), 0.0635 m (2.5 in.), 0.0925 m (3.64 in.).
TYPE:
|
H
|
Vane height (m). Standard H/D = 2.
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
float or ndarray
|
Undrained shear strength Su (kPa). |
References
ASTM D2573 (2018); Das (2021), Section 3.15.
Examples:
>>> from geoeq.site.vane import vane_su
>>> round(vane_su(T=0.012, D=0.065, H=0.130), 1)
20.9
Source code in geoeq/site/vane.py
vane_correction
¶
vane_correction(Su_fvt: Union[float, ndarray], PI: Union[float, ndarray]) -> Union[float, np.ndarray]
Bjerrum (1972) correction for field vane undrained shear strength.
The field vane overestimates the mobilised Su on the failure surface. The correction factor μ depends on the soil's plasticity index:
.. math::
S_{u,\text{design}} = \mu \times S_{u,\text{FVT}}
Bjerrum (1972):
.. math::
\mu = 1.7 - 0.54 \log_{10}(\text{PI})
\qquad \text{for PI in \%}
For very low PI (< 20 %), μ is capped at 1.0.
| PARAMETER | DESCRIPTION |
|---|---|
Su_fvt
|
Field vane undrained shear strength (kPa).
TYPE:
|
PI
|
Plasticity index (%).
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
float or ndarray
|
Corrected undrained shear strength Su,design (kPa). |
Notes
- Bjerrum's factor typically ranges from 0.5 to 1.0.
- Aas et al. (1986) proposed an alternative correction based on Su/σ'v ratio; use the Bjerrum factor for routine design.
References
Bjerrum (1972); Das (2021), Eq. 3.39.
Examples:
>>> from geoeq.site.vane import vane_correction
>>> round(vane_correction(Su_fvt=50, PI=40), 1)
38.2
Source code in geoeq/site/vane.py
vane_remolded
¶
Undrained shear strength (peak and remolded) and sensitivity.
After the peak torque test, the vane is rotated rapidly through several full revolutions to remold the soil, then retested.
.. math::
S_t = \frac{S_{u,\text{peak}}}{S_{u,\text{remolded}}}
| PARAMETER | DESCRIPTION |
|---|---|
T_peak
|
Peak torque (kN·m).
TYPE:
|
T_remolded
|
Remolded torque (kN·m).
TYPE:
|
D
|
Vane diameter (m).
TYPE:
|
H
|
Vane height (m).
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
dict
|
|
References
Das (2021), Table 3.7; ASTM D2573.
Examples:
>>> from geoeq.site.vane import vane_remolded
>>> res = vane_remolded(T_peak=0.015, T_remolded=0.003, D=0.065, H=0.130)
>>> res['sensitivity']
5.0
Source code in geoeq/site/vane.py
| Python | |
|---|---|
157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 | |
Pressuremeter¶
pmt_parameters
¶
pmt_parameters(pressure: Union[list, ndarray], volume: Union[list, ndarray]) -> Dict[str, float]
Extract pressuremeter modulus Em and limit pressure pL from the pressure–volume curve.
The pseudo-elastic phase is identified as the steepest linear portion of the p–ΔV curve. The pressuremeter modulus is:
.. math::
E_m = 2\,(1+\nu)\,(V_0 + V_m)\,\frac{\Delta p}{\Delta V}
where :math:V_0 is the initial probe volume, :math:V_m is the
mid-volume of the linear phase, :math:\Delta p / \Delta V is
the slope of the linear portion, and ν = 0.33.
The limit pressure :math:p_L is the pressure at which the
cavity volume has doubled from its initial value.
| PARAMETER | DESCRIPTION |
|---|---|
pressure
|
Applied pressures (kPa), monotonically increasing.
TYPE:
|
volume
|
Corresponding injected volumes (cm³).
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
dict
|
|
Notes
- The probe volume V₀ is typically 535 cm³ for the Ménard G-probe.
- This function uses an automated algorithm to detect the linear phase; for critical projects, manual selection is recommended.
References
Ménard (1956); Briaud (1992), Ch. 4.
Examples:
>>> from geoeq.site.pmt import pmt_parameters
>>> p = [0, 50, 100, 200, 300, 400, 500, 600, 700, 800]
>>> v = [0, 20, 40, 60, 80, 110, 160, 240, 370, 600]
>>> res = pmt_parameters(p, v)
>>> res['Em'] > 0
True
Source code in geoeq/site/pmt.py
| Python | |
|---|---|
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 | |
pmt_modulus
¶
Young's modulus from pressuremeter modulus.
.. math::
E = \frac{E_m}{\alpha}
| PARAMETER | DESCRIPTION |
|---|---|
Em
|
Pressuremeter modulus (kPa).
TYPE:
|
alpha
|
Rheological coefficient (Ménard, 1975). ============= ============= Soil type α ============= ============= Sand 0.33 -- 0.50 Silt 0.50 Clay 0.50 -- 0.67 Rock 0.33 ============= =============
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
float
|
Young's modulus E (kPa). |
References
Ménard (1975); Briaud (1992), Table 4.2.
Examples:
>>> from geoeq.site.pmt import pmt_modulus
>>> pmt_modulus(Em=15000, alpha=0.5)
30000.0
Source code in geoeq/site/pmt.py
pmt_su
¶
Undrained shear strength from pressuremeter limit pressure.
.. math::
S_u = \frac{p_L - p_0}{N_p}
where :math:N_p \approx 5.5 for the Ménard pressuremeter
(Baguelin et al., 1978), and :math:p_0 can be approximated
as the in-situ total horizontal stress.
Alternatively, using the net limit pressure:
.. math::
p_L^* = p_L - \sigma_{h0}
\qquad
S_u = \frac{p_L^*}{N_p}
| PARAMETER | DESCRIPTION |
|---|---|
pL
|
Limit pressure (kPa).
TYPE:
|
p0
|
Initial pressure / in-situ horizontal stress (kPa).
TYPE:
|
sigma_h0
|
In-situ total horizontal stress (kPa). If provided and non-zero, the net limit pressure method is used.
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
float
|
Undrained shear strength Su (kPa). |
References
Baguelin et al. (1978); Briaud (1992), Eq. 4.12.
Examples:
>>> from geoeq.site.pmt import pmt_su
>>> round(pmt_su(pL=600, p0=100), 1)
90.9
Source code in geoeq/site/pmt.py
pmt_bearing
¶
Ultimate bearing capacity from pressuremeter data (Ménard method).
.. math::
q_u = \sigma_{v0} + k \,(p_L - p_0)
where k is a bearing factor depending on foundation shape and embedment:
============= ==== Shape k ============= ==== Strip 0.8 Square/Circle 1.2 ============= ====
| PARAMETER | DESCRIPTION |
|---|---|
pL
|
Limit pressure (kPa).
TYPE:
|
p0
|
Initial pressure (kPa).
TYPE:
|
sigma_v
|
Overburden stress at foundation level (kPa).
TYPE:
|
shape
|
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
dict
|
|
References
Ménard (1963); Briaud (1992), Section 5.3.
Examples:
>>> from geoeq.site.pmt import pmt_bearing
>>> res = pmt_bearing(pL=800, p0=100, sigma_v=50, shape='square')
>>> res['qu']
890.0
Source code in geoeq/site/pmt.py
pmt_settlement
¶
pmt_settlement(q: float, B: float, Em: float, alpha: float = 0.5, shape: str = 'circle', B0: float = 0.6) -> float
Settlement from Ménard pressuremeter method.
.. math::
s = \frac{2}{9\,E_m}\,q\,B_0\,
\left(\frac{\alpha \, B}{B_0}\right)^{\!\beta}
where β = shape factor (α from Ménard, here separate from the rheological factor). The simplified Ménard (1963) approach:
.. math::
s = \frac{q \, B}{E / \alpha_s}
Using the deviatoric and spherical components (full Ménard approach):
.. math::
s = \frac{q}{9\,E_m}\bigl[2\,B_0\,\alpha_d\,(B/B_0)^{\alpha_s}
+ \alpha_s\,B\bigr]
This function uses the simplified version for routine estimates.
| PARAMETER | DESCRIPTION |
|---|---|
q
|
Net applied pressure (kPa).
TYPE:
|
B
|
Foundation width or diameter (m).
TYPE:
|
Em
|
Pressuremeter modulus (kPa).
TYPE:
|
alpha
|
Rheological coefficient.
TYPE:
|
shape
|
TYPE:
|
B0
|
Reference width (m) = 0.60 m = 60 cm.
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
float
|
Settlement (m). |
References
Ménard (1963); Briaud (1992), Section 6.2.
Examples:
>>> from geoeq.site.pmt import pmt_settlement
>>> round(pmt_settlement(q=150, B=2.0, Em=15000) * 1000, 1)
10.7
Source code in geoeq/site/pmt.py
| Python | |
|---|---|
336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 | |
pmt_ko
¶
At-rest earth pressure coefficient from PMT initial pressure.
.. math::
K_0 = \frac{p_0 - u_0}{\sigma'_{v0}}
| PARAMETER | DESCRIPTION |
|---|---|
p0
|
In-situ horizontal stress from PMT (kPa).
TYPE:
|
sigma_v
|
Total vertical stress (kPa).
TYPE:
|
u0
|
Pore water pressure (kPa).
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
float
|
Coefficient of earth pressure at rest K₀. |
Examples:
>>> from geoeq.site.pmt import pmt_ko
>>> pmt_ko(p0=80, sigma_v=150, u0=30)
0.4166666666666667
Source code in geoeq/site/pmt.py
Plate load test¶
plt_bearing
¶
plt_bearing(pressure: Union[list, ndarray], settlement: Union[list, ndarray], failure_criterion: str = 'log_log') -> Dict[str, float]
Determine ultimate bearing capacity from plate load test data.
| PARAMETER | DESCRIPTION |
|---|---|
pressure
|
Applied pressures (kPa).
TYPE:
|
settlement
|
Corresponding settlements (mm).
TYPE:
|
failure_criterion
|
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
dict
|
|
Notes
- Standard plate diameter is 300 mm (12 in.), but 450 mm and 600 mm (18/24 in.) plates are also used.
- For clay soils, the plate test gives the bearing capacity of the plate, which equals that of the actual foundation (independent of size for φ = 0).
- For sandy soils, scale correction is required — see
:func:
plt_settlement_correction.
References
Das (2021), Section 4.14; IS 1888 (1982).
Examples:
>>> from geoeq.site.plt_test import plt_bearing
>>> p = [0, 50, 100, 150, 200, 250, 300, 350, 400]
>>> s = [0, 0.5, 1.2, 2.5, 5.0, 10.0, 20.0, 35.0, 55.0]
>>> res = plt_bearing(p, s, failure_criterion='settlement')
>>> res['qu'] > 0
True
Source code in geoeq/site/plt_test.py
| Python | |
|---|---|
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 | |
plt_subgrade_modulus
¶
plt_subgrade_modulus(pressure: Union[float, ndarray], settlement: Union[float, ndarray], plate_size: float = 0.3) -> Union[float, Dict[str, float]]
Modulus of subgrade reaction from plate load test.
.. math::
k_s = \frac{q}{\delta}
where q is the applied pressure (kPa) and δ is the settlement (m).
For a standard 300 mm plate, correction to foundation size:
.. math::
k_{s,\text{foundation}} = k_{s,\text{plate}} \times
\left(\frac{B_p}{B_f}\right)
\qquad \text{(clay, φ = 0)}
.. math::
k_{s,\text{foundation}} = k_{s,\text{plate}} \times
\left(\frac{B_f + B_p}{2 \, B_f}\right)^{\!2}
\qquad \text{(sand)}
| PARAMETER | DESCRIPTION |
|---|---|
pressure
|
Applied pressure(s) (kPa).
TYPE:
|
settlement
|
Corresponding settlement(s) (mm).
TYPE:
|
plate_size
|
Plate diameter or width (m).
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
float or dict
|
If scalar inputs: float — ks (kN/m³).
If array inputs: dict with |
Notes
Settlement is converted from mm to m internally.
References
Das (2021), Eq. 4.35; Terzaghi (1955).
Examples:
>>> from geoeq.site.plt_test import plt_subgrade_modulus
>>> plt_subgrade_modulus(pressure=200, settlement=5.0)
40000.0
Source code in geoeq/site/plt_test.py
plt_settlement_correction
¶
plt_settlement_correction(s_plate: float, B_plate: float, B_foundation: float, soil_type: str = 'sand') -> float
Terzaghi & Peck settlement correction from plate to foundation.
For sand (Terzaghi & Peck, 1967):
.. math::
\frac{S_f}{S_p} = \left(\frac{B_f \,(B_p + 0.3)}
{B_p \,(B_f + 0.3)}\right)^{\!2}
For clay (φ = 0, bearing capacity independent of size):
.. math::
\frac{S_f}{S_p} = \frac{B_f}{B_p}
| PARAMETER | DESCRIPTION |
|---|---|
s_plate
|
Settlement of the test plate (mm).
TYPE:
|
B_plate
|
Plate size (m).
TYPE:
|
B_foundation
|
Foundation size (m).
TYPE:
|
soil_type
|
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
float
|
Estimated foundation settlement (mm). |
References
Terzaghi & Peck (1967); Das (2021), Eq. 4.34.
Examples:
>>> from geoeq.site.plt_test import plt_settlement_correction
>>> round(plt_settlement_correction(s_plate=5.0, B_plate=0.3,
... B_foundation=2.0, soil_type='sand'), 1)
17.7
Source code in geoeq/site/plt_test.py
plt_elastic_modulus
¶
plt_elastic_modulus(pressure: float, settlement: float, plate_diameter: float = 0.3, poisson_ratio: float = 0.3, Is: float = 0.79) -> float
Elastic modulus from plate load test (Timoshenko & Goodier).
.. math::
E = \frac{q \, B \, (1 - \nu^2) \, I_s}{\delta}
| PARAMETER | DESCRIPTION |
|---|---|
pressure
|
Applied pressure (kPa).
TYPE:
|
settlement
|
Settlement (mm).
TYPE:
|
plate_diameter
|
Plate diameter (m).
TYPE:
|
poisson_ratio
|
Poisson's ratio.
TYPE:
|
Is
|
Influence factor. 0.79 for rigid circular plate, π/4 for flexible circular plate.
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
float
|
Elastic modulus E (kPa). |
References
Timoshenko & Goodier (1970); Das (2021), Eq. 4.33.
Examples:
>>> from geoeq.site.plt_test import plt_elastic_modulus
>>> round(plt_elastic_modulus(200, 5.0, plate_diameter=0.3), 0)
8658.0
Source code in geoeq/site/plt_test.py
plt_plot
¶
plt_plot(pressure: Union[list, ndarray], settlement: Union[list, ndarray], ax=None, save_as: Optional[str] = None) -> Dict
Plot plate load test pressure–settlement curve.
| PARAMETER | DESCRIPTION |
|---|---|
pressure
|
Applied pressures (kPa).
TYPE:
|
settlement
|
Corresponding settlements (mm).
TYPE:
|
ax
|
TYPE:
|
save_as
|
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
dict
|
|
Examples:
>>> from geoeq.site.plt_test import plt_plot
>>> res = plt_plot([0, 100, 200, 300], [0, 2, 5, 12])
Source code in geoeq/site/plt_test.py
Pile load tests¶
davisson
¶
davisson(load: Union[List[float], ndarray], settlement: Union[List[float], ndarray], diameter: float, length: float, area: float, elastic_modulus: float) -> Dict[str, float]
Davisson's Offset Limit Method (1972).
The failure load is defined as the load at which the measured load-settlement curve intersects an offset elastic compression line.
The offset line is:
.. math::
\Delta_{\text{offset}} = \frac{P \, L}{A \, E}
+ \left(0.15 + \frac{D}{120}\right) \times 25.4 \; \text{[mm]}
where the term in parentheses is in inches and :math:D is the
pile diameter in inches. The constant 0.15 in. (3.81 mm) is the
quake offset, and :math:D/120 accounts for pile-tip displacement.
Equivalently in SI (all mm):
.. math::
\Delta_{\text{offset}} = \frac{P \, L}{A \, E}
+ 3.81 + \frac{D}{4.724}
| PARAMETER | DESCRIPTION |
|---|---|
load
|
Applied loads (kN), monotonically increasing.
TYPE:
|
settlement
|
Corresponding pile-head settlements (mm).
TYPE:
|
diameter
|
Pile diameter or equivalent diameter (mm).
TYPE:
|
length
|
Pile length (mm).
TYPE:
|
area
|
Cross-sectional area of the pile (mm^2).
TYPE:
|
elastic_modulus
|
Elastic modulus of the pile material (kN/mm^2 = GPa). Typical: steel 200 GPa, concrete 25-35 GPa.
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
dict
|
|
Notes
- Originally formulated for driven piles up to 600 mm (24 in.) diameter.
- For larger piles, consider the FHWA 5 %% criterion
(:func:
fhwa_5_percent). - The elastic compression slope is :math:
L / (A \, E).
References
Davisson (1972); Fellenius (2020), Ch. 8.
Examples:
>>> from geoeq.site.pile_load import davisson
>>> Q = [0, 200, 400, 600, 800, 1000, 1200, 1400]
>>> s = [0, 1.0, 2.5, 5.0, 8.5, 14.0, 22.0, 35.0]
>>> res = davisson(Q, s, diameter=300, length=12000, area=70686, elastic_modulus=30)
>>> 0 < res['Qu_davisson'] < 1500
True
Source code in geoeq/site/pile_load.py
| Python | |
|---|---|
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 | |
chin
¶
chin(load: Union[List[float], ndarray], settlement: Union[List[float], ndarray], start_index: Optional[int] = None, end_index: Optional[int] = None) -> Dict[str, float]
Chin's Hyperbolic Method (1970).
Plot :math:\Delta / Q (settlement / load) versus :math:\Delta
(settlement). The data approach a straight line at larger
settlements. The ultimate capacity is:
.. math::
Q_u = \frac{1}{C_1}
where :math:C_1 is the slope of the linear portion of
:math:\Delta / Q versus :math:\Delta.
| PARAMETER | DESCRIPTION |
|---|---|
load
|
Applied loads (kN). Must be > 0 for the data points used.
TYPE:
|
settlement
|
Corresponding settlements (mm).
TYPE:
|
start_index
|
Index at which the linear portion begins (0-based).
If
TYPE:
|
end_index
|
Index at which the linear portion ends (exclusive).
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
dict
|
|
Notes
- Chin's method typically overestimates the actual failure load by 20--40 %%. Apply a reduction factor (commonly 0.80) for design.
- Only data points where Q > 0 are used.
References
Chin (1970); Fellenius (2020), Section 8.9.
Examples:
>>> from geoeq.site.pile_load import chin
>>> Q = [100, 200, 400, 600, 800, 1000, 1200]
>>> s = [0.5, 1.2, 3.0, 5.5, 9.0, 14.0, 21.0]
>>> res = chin(Q, s)
>>> res['Qu_chin'] > 0
True
Source code in geoeq/site/pile_load.py
| Python | |
|---|---|
184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 | |
de_beer
¶
de_beer(load: Union[List[float], ndarray], settlement: Union[List[float], ndarray]) -> Dict[str, float]
De Beer's Double-Logarithmic Method (1967).
Plot :math:\log_{10}(Q) versus :math:\log_{10}(\Delta). The
data form two approximately straight-line segments. The failure
load is the load at the intersection of these two segments.
The method fits two straight lines to the first and second halves of the double-log data and finds their intersection.
| PARAMETER | DESCRIPTION |
|---|---|
load
|
Applied loads (kN). Must be > 0.
TYPE:
|
settlement
|
Corresponding settlements (mm). Must be > 0.
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
dict
|
|
Notes
- All data points must have Q > 0 and settlement > 0.
- The method uses an automated split: it searches for the break point that minimises total sum-of-squared residuals from two piecewise-linear fits in log-log space.
References
De Beer (1967); Fellenius (2020), Section 8.8.
Examples:
>>> from geoeq.site.pile_load import de_beer
>>> Q = [50, 100, 200, 400, 600, 800, 1000, 1200]
>>> s = [0.3, 0.7, 1.5, 3.5, 7.0, 14.0, 25.0, 42.0]
>>> res = de_beer(Q, s)
>>> res['Qu_de_beer'] > 0
True
Source code in geoeq/site/pile_load.py
| Python | |
|---|---|
293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 | |
hansen_80
¶
hansen_80(load: Union[List[float], ndarray], settlement: Union[List[float], ndarray], start_index: Optional[int] = None, end_index: Optional[int] = None) -> Dict[str, float]
Hansen's 80 %% Method (1963).
Plot :math:\sqrt{\Delta / Q} versus :math:\Delta. At large
settlements the relationship becomes linear:
.. math::
\sqrt{\frac{\Delta}{Q}} = a \, \Delta + b
The ultimate capacity is:
.. math::
Q_u = \frac{1}{2 \sqrt{a \, b}}
and the settlement at failure is:
.. math::
\Delta_u = \frac{b}{a}
The name "80 %% method" comes from the fact that at the ultimate
load the pile mobilises 80 %% of its capacity for any
settlement beyond :math:\Delta_u.
| PARAMETER | DESCRIPTION |
|---|---|
load
|
Applied loads (kN). Must be > 0.
TYPE:
|
settlement
|
Corresponding settlements (mm). Must be > 0.
TYPE:
|
start_index
|
Start of linear portion (0-based). Default: last 50 %%.
TYPE:
|
end_index
|
End of linear portion (exclusive).
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
dict
|
|
Notes
- Like Chin's method, Hansen's method also tends to overestimate the actual failure load.
- If a or b is negative the result is physically meaningless and
nanis returned.
References
Hansen (1963); Fellenius (2020), Section 8.10.
Examples:
>>> from geoeq.site.pile_load import hansen_80
>>> Q = [100, 200, 400, 600, 800, 1000, 1200]
>>> s = [0.5, 1.2, 3.0, 5.5, 9.0, 14.0, 21.0]
>>> res = hansen_80(Q, s)
>>> res['Qu_hansen'] > 0
True
Source code in geoeq/site/pile_load.py
| Python | |
|---|---|
401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 | |
fhwa_5_percent
¶
fhwa_5_percent(load: Union[List[float], ndarray], settlement: Union[List[float], ndarray], diameter: float) -> Dict[str, float]
FHWA / Modified Davisson 5 %% Diameter Criterion for drilled shafts.
The failure load is the load corresponding to a settlement equal to 5 %% of the pile (shaft) diameter:
.. math::
\Delta_{\text{fail}} = 0.05 \, D
This criterion is recommended by FHWA for drilled shafts and large-diameter bored piles (> 600 mm / 24 in.).
| PARAMETER | DESCRIPTION |
|---|---|
load
|
Applied loads (kN).
TYPE:
|
settlement
|
Corresponding settlements (mm).
TYPE:
|
diameter
|
Shaft diameter (mm).
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
dict
|
|
References
FHWA (2010). Drilled Shafts: Construction Procedures and LRFD Design Methods, FHWA-NHI-10-016, Section 13.3.
Examples:
>>> from geoeq.site.pile_load import fhwa_5_percent
>>> Q = [0, 500, 1000, 1500, 2000, 2500, 3000]
>>> s = [0, 2.0, 5.0, 12.0, 25.0, 45.0, 75.0]
>>> res = fhwa_5_percent(Q, s, diameter=600)
>>> res['settlement_criterion']
30.0
Source code in geoeq/site/pile_load.py
case_method
¶
case_method(F1: float, F2: float, v1: float, v2: float, impedance: float, Jc: float = 0.5) -> Dict[str, float]
Case Method for dynamic pile capacity (Goble et al. 1975).
From force and velocity measurements at the pile head at times
:math:t_1 (impact peak) and :math:t_2 = t_1 + 2L/c:
.. math::
R_{\text{total}} = \frac{1}{2}\bigl[(F_1 + F_2) +
Z\,(v_1 - v_2)\bigr]
.. math::
R_{\text{static}} = R_{\text{total}}\,(1 - J_c) +
\frac{1}{2}\bigl[(F_2 + Z\,v_2)\bigr]\,J_c
Or equivalently (closed-form used in practice):
.. math::
R_{\text{static}} = \frac{(1-J_c)}{2}(F_1 + Z\,v_1)
+ \frac{(1+J_c)}{2}(F_2 - Z\,v_2) \; \times (-1)
The simplified FHWA form used here:
.. math::
R_{\text{static}} = \frac{1}{2}\bigl[(1-J_c)(F_1+Z\,v_1)
+ (1+J_c)(F_2-Z\,v_2)\bigr] \times \frac{1}{1}
Note: the sign convention uses compressive force positive, velocity positive downward. See Rausche et al. (1985) for derivation.
| PARAMETER | DESCRIPTION |
|---|---|
F1
|
Force at pile head at time t1 — first peak (kN).
TYPE:
|
F2
|
Force at pile head at time t2 = t1 + 2L/c (kN).
TYPE:
|
v1
|
Velocity at pile head at time t1 (m/s).
TYPE:
|
v2
|
Velocity at pile head at time t2 (m/s).
TYPE:
|
impedance
|
Pile impedance Z = EA/c (kNs/m).
Compute with :func:
TYPE:
|
Jc
|
Case damping factor (dimensionless). Typical ranges by soil type: ======== ============ Soil Jc ======== ============ Sand 0.10 -- 0.20 Silt 0.20 -- 0.40 Clay 0.40 -- 0.70 Peat 0.70 -- 1.00 ======== ============
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
dict
|
|
References
Goble, Rausche & Likins (1975); Rausche, F., Goble, G. G., & Likins, G. E. (1985). "Dynamic determination of pile capacity." ASCE J. Geotech. Eng., 111(3).
Examples:
>>> from geoeq.site.pile_load import case_method
>>> res = case_method(F1=2500, F2=800, v1=3.0, v2=0.5,
... impedance=4000, Jc=0.4)
>>> res['R_static'] > 0
True
Source code in geoeq/site/pile_load.py
| Python | |
|---|---|
607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 | |
hiley
¶
hiley(hammer_weight: float, drop_height: float, efficiency: float, set_per_blow: float, elastic_compression: float) -> Dict[str, float]
Hiley Driving Formula — ultimate pile capacity from driving data.
.. math::
Q_u = \frac{W \, h \, \eta}{s + c/2}
| PARAMETER | DESCRIPTION |
|---|---|
hammer_weight
|
Weight of the hammer, W (kN).
TYPE:
|
drop_height
|
Drop height, h (m).
TYPE:
|
efficiency
|
Hammer efficiency, :math: Typical values: ======================== =========== Hammer type Efficiency ======================== =========== Drop hammer (free fall) 0.75 -- 1.0 Single-acting air/steam 0.75 -- 0.85 Double-acting air/steam 0.70 -- 0.80 Diesel hammer 0.70 -- 0.90 Hydraulic hammer 0.80 -- 0.95 ======================== ===========
TYPE:
|
set_per_blow
|
Permanent set per blow, s (m). Typically measured as the average of the last 10 blows. s > 0.
TYPE:
|
elastic_compression
|
Total temporary (elastic) compression, c (m). Sum of pile, soil, and driving cap compressions. Typical range: 0.002 -- 0.025 m.
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
dict
|
|
References
Hiley, A. (1925). "A rational pile driving formula and its application in practice explained." Engineering (London), 119.
Examples:
>>> from geoeq.site.pile_load import hiley
>>> res = hiley(hammer_weight=50, drop_height=1.5, efficiency=0.85,
... set_per_blow=0.010, elastic_compression=0.005)
>>> res['Qu_hiley'] > 0
True
Source code in geoeq/site/pile_load.py
| Python | |
|---|---|
713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 | |
danish_formula
¶
danish_formula(hammer_weight: float, drop_height: float, efficiency: float, set_per_blow: float, pile_length: float, pile_area: float, pile_modulus: float) -> Dict[str, float]
Danish Driving Formula — ultimate pile capacity.
.. math::
Q_u = \frac{e_h \, W \, h}
{s + \sqrt{\frac{e_h \, W \, h \, L}{2 \, A \, E}}}
where :math:e_h = \eta is the hammer efficiency.
| PARAMETER | DESCRIPTION |
|---|---|
hammer_weight
|
Weight of the hammer, W (kN).
TYPE:
|
drop_height
|
Drop height, h (m).
TYPE:
|
efficiency
|
Hammer efficiency, :math:
TYPE:
|
set_per_blow
|
Permanent set per blow, s (m). s > 0.
TYPE:
|
pile_length
|
Pile length, L (m).
TYPE:
|
pile_area
|
Cross-sectional area, A (m^2).
TYPE:
|
pile_modulus
|
Elastic modulus, E (kN/m^2 = kPa). Typical: steel ~200e6 kPa, concrete ~25e6 kPa.
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
dict
|
|
References
Sorensen, T. & Hansen, B. (1957). "Pile driving formulae — an investigation based on dimensional analysis and statistical analysis." Proc., 4th ICSMFE, London, Vol. 2, pp. 61--65.
Examples:
>>> from geoeq.site.pile_load import danish_formula
>>> res = danish_formula(hammer_weight=50, drop_height=1.5,
... efficiency=0.85, set_per_blow=0.010,
... pile_length=15, pile_area=0.07, pile_modulus=25e6)
>>> res['Qu_danish'] > 0
True
Source code in geoeq/site/pile_load.py
| Python | |
|---|---|
796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 | |
enr
¶
enr(hammer_weight: float, drop_height: float, set_per_blow: float, rebound: float = 0.0254, factor_of_safety: float = 6.0) -> Dict[str, float]
Engineering News Record (ENR) Formula — allowable pile capacity.
.. math::
Q_a = \frac{W \, h}{F_s \, (s + c)}
| PARAMETER | DESCRIPTION |
|---|---|
hammer_weight
|
Weight of the hammer, W (kN).
TYPE:
|
drop_height
|
Drop height, h (m).
TYPE:
|
set_per_blow
|
Permanent set per blow, s (m).
TYPE:
|
rebound
|
Elastic rebound / temporary compression, c (m). Original ENR uses c = 25.4 mm (1 inch) for drop hammers, c = 2.54 mm (0.1 inch) for steam/air hammers.
TYPE:
|
factor_of_safety
|
Built-in factor of safety. The original ENR formula uses FS = 6. The Modified ENR uses a variable FS.
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
dict
|
|
Notes
- The ENR formula is considered unreliable by modern standards. It has a very high coefficient of variation (> 0.5) and should only be used for preliminary estimates or where required by local building codes.
- ASCE and FHWA discourage its use for design.
References
Wellington, A. M. (1893). "Piles and pile driving." Engineering News Record. Das (2021), Section 11.16.
Examples:
>>> from geoeq.site.pile_load import enr
>>> res = enr(hammer_weight=30, drop_height=1.0, set_per_blow=0.010)
>>> res['Qa_enr'] > 0
True
Source code in geoeq/site/pile_load.py
| Python | |
|---|---|
881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 | |
pile_impedance
¶
Pile impedance — fundamental property for wave-equation analysis.
.. math::
Z = \frac{E \, A}{c}
| PARAMETER | DESCRIPTION |
|---|---|
elastic_modulus
|
Elastic modulus, E (kN/m^2 = kPa). Typical: steel ~200e6 kPa, concrete ~30e6 kPa.
TYPE:
|
area
|
Cross-sectional area, A (m^2).
TYPE:
|
wave_speed
|
Stress-wave speed, c (m/s). Typical: steel ~5120 m/s, concrete ~3600--4000 m/s.
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
dict
|
|
Notes
-
Impedance changes along the pile indicate defects:
-
Decrease in Z → necking, crack, or void.
-
Increase in Z → bulging or inclusion of harder material.
-
Related: :math:
c = \sqrt{E / \rho}, where :math:\rhois the mass density (kg/m^3).
References
Rausche et al. (1985); ASTM D4945 (PDA testing).
Examples:
>>> from geoeq.site.pile_load import pile_impedance
>>> res = pile_impedance(elastic_modulus=30e6, area=0.07,
... wave_speed=3800)
>>> round(res['impedance'], 1)
552.6
Source code in geoeq/site/pile_load.py
beta_integrity
¶
Beta integrity factor — pile length verification from sonic test.
.. math::
\beta = \frac{L_{\text{measured}}}{L_{\text{known}}}
| PARAMETER | DESCRIPTION |
|---|---|
measured_length
|
Length obtained from low-strain integrity test (m).
TYPE:
|
known_length
|
As-built or design pile length (m).
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
dict
|
|
Notes
Interpretation guide:
============= ========================================= Beta range Interpretation ============= ========================================= 0.95 -- 1.05 Intact — no significant defect detected 0.80 -- 0.95 Possible defect — further investigation < 0.80 Likely severe defect or shortened pile
1.05 Possible bulging or wave speed error ============= =========================================
References
ASTM D5882 (2016). Standard Test Method for Low Strain Integrity Testing of Deep Foundations.
Examples:
>>> from geoeq.site.pile_load import beta_integrity
>>> res = beta_integrity(measured_length=14.5, known_length=15.0)
>>> round(res['beta'], 3)
0.967
Source code in geoeq/site/pile_load.py
| Python | |
|---|---|
1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 | |
Field permeability¶
slug_test
¶
Hydraulic conductivity from slug test (Hvorslev method).
The Hvorslev (1951) basic time lag method for a well point or piezometer with length/diameter ratio > 8:
.. math::
k = \frac{r^2 \ln(L_e / R)}{2\,L_e\,T_0}
| PARAMETER | DESCRIPTION |
|---|---|
r
|
Standpipe (casing) radius (m).
TYPE:
|
R
|
Well screen or intake radius (m).
TYPE:
|
Le
|
Length of the well screen or intake (m).
TYPE:
|
T0
|
Basic time lag (s) — time for head to reach 37% (1/e) of initial displacement. Obtained from the slope of ln(h/h₀) vs t plot.
TYPE:
|
method
|
Currently only
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
float
|
Hydraulic conductivity k (m/s). |
Notes
- Valid for Le/R > 8.
- For Le/R < 8, use the Bouwer & Rice (1976) method.
- T₀ is found from the -1/slope of the ln(h/h₀) vs time plot (the time at which ln(h/h₀) = -1).
References
Hvorslev (1951); Das (2021), Section 5.7.
Examples:
>>> from geoeq.site.field_perm import slug_test
>>> k = slug_test(r=0.025, R=0.05, Le=1.5, T0=300)
>>> f'{k:.2e}'
'3.05e-07'
Source code in geoeq/site/field_perm.py
pumping_test_confined
¶
pumping_test_confined(Q: float, h1: float, h2: float, r1: float, r2: float, H: float) -> Dict[str, float]
Hydraulic conductivity from pumping test — confined aquifer.
Thiem (1906) equilibrium equation for steady-state flow to a well in a confined aquifer:
.. math::
k = \frac{Q \ln(r_2 / r_1)}{2\,\pi\,H\,(h_2 - h_1)}
| PARAMETER | DESCRIPTION |
|---|---|
Q
|
Steady-state pumping rate (m³/s).
TYPE:
|
h1
|
Piezometric head at observation well 1 (m).
TYPE:
|
h2
|
Piezometric head at observation well 2 (m), h₂ > h₁.
TYPE:
|
r1
|
Radial distance of observation well 1 from pumped well (m).
TYPE:
|
r2
|
Radial distance of observation well 2 from pumped well (m), r₂ > r₁.
TYPE:
|
H
|
Aquifer thickness (m).
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
dict
|
|
Notes
- h₂ > h₁ since the head increases with distance from the well.
- r₂ > r₁ for the outer observation well.
References
Thiem (1906); Das (2021), Eq. 5.16.
Examples:
>>> from geoeq.site.field_perm import pumping_test_confined
>>> res = pumping_test_confined(Q=0.004, h1=18.0, h2=19.5,
... r1=10, r2=50, H=20)
>>> f"{res['k']:.2e}"
'3.42e-05'
Source code in geoeq/site/field_perm.py
pumping_test_unconfined
¶
pumping_test_unconfined(Q: float, h1: float, h2: float, r1: float, r2: float) -> Dict[str, float]
Hydraulic conductivity from pumping test — unconfined aquifer.
Thiem equation for steady-state flow in an unconfined (phreatic/water-table) aquifer:
.. math::
k = \frac{Q \ln(r_2 / r_1)}{\pi\,(h_2^2 - h_1^2)}
| PARAMETER | DESCRIPTION |
|---|---|
Q
|
Steady-state pumping rate (m³/s).
TYPE:
|
h1
|
Water table height at observation well 1 (m from base).
TYPE:
|
h2
|
Water table height at observation well 2 (m from base), h₂ > h₁.
TYPE:
|
r1
|
Radial distance to observation well 1 (m).
TYPE:
|
r2
|
Radial distance to observation well 2 (m), r₂ > r₁.
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
dict
|
|
References
Thiem (1906); Das (2021), Eq. 5.17.
Examples:
>>> from geoeq.site.field_perm import pumping_test_unconfined
>>> res = pumping_test_unconfined(Q=0.003, h1=15.0, h2=18.0,
... r1=10, r2=50)
>>> f"{res['k']:.2e}"
'1.55e-05'
Source code in geoeq/site/field_perm.py
lefranc_test
¶
Lefranc permeability test — in-situ hydraulic conductivity.
For a constant-head test in a borehole with an open-ended cylindrical cavity of diameter D and length H:
.. math::
k = \frac{Q}{F \, H_w}
where :math:H_w is the constant head difference and F is a
shape factor. For a cylindrical cavity with L/D > 4:
.. math::
F = \frac{2\,\pi\,H}{\ln(2\,H / D)}
| PARAMETER | DESCRIPTION |
|---|---|
Q
|
Flow rate (m³/s).
TYPE:
|
H
|
Head difference (m) — for constant-head test, this is the applied head; flow rate must correspond.
TYPE:
|
D
|
Borehole diameter (m).
TYPE:
|
method
|
Currently
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
float
|
Hydraulic conductivity k (m/s). |
Notes
- The Lefranc test is common in European practice (NF P 94-132).
- The shape factor assumes L/D > 4 for the simplified formula.
References
Lefranc (1936); Cassan, M. (2005). Les essais d'eau in situ.
Examples:
>>> from geoeq.site.field_perm import lefranc_test
>>> k = lefranc_test(Q=1e-5, H=2.0, D=0.076)
>>> f'{k:.2e}'
'2.78e-06'
Source code in geoeq/site/field_perm.py
Field CBR / DCP¶
dcp_cbr
¶
Estimate CBR from Dynamic Cone Penetrometer Index (DCPI).
The DCP measures penetration per blow (mm/blow). Several empirical correlations relate DCPI to CBR:
Webster et al. (1992) — US Army Corps of Engineers:
.. math::
\log_{10}(\text{CBR}) = 1.12 - 0.39 \,\log_{10}(\text{DCPI})
i.e. :math:\text{CBR} = 10^{1.12 - 0.39 \log(\text{DCPI})}
TRL (1993) — Transport Research Laboratory:
.. math::
\log_{10}(\text{CBR}) = 2.48 - 1.057 \,\log_{10}(\text{DCPI})
Kleyn (1975) — South African method:
.. math::
\log_{10}(\text{CBR}) = 2.62 - 1.27 \,\log_{10}(\text{DCPI})
| PARAMETER | DESCRIPTION |
|---|---|
dcpi
|
DCP Index — penetration per blow (mm/blow).
TYPE:
|
method
|
Correlation method:
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
float or ndarray
|
Estimated CBR (%). |
References
Webster et al. (1992); TRL (1993); Kleyn (1975).
Examples:
>>> from geoeq.site.field_cbr import dcp_cbr
>>> round(dcp_cbr(dcpi=10, method='webster'), 1)
5.4
>>> round(dcp_cbr(dcpi=10, method='trl'), 1)
26.5
Source code in geoeq/site/field_cbr.py
field_cbr_test
¶
field_cbr_test(penetration: Union[list, ndarray], load: Union[list, ndarray], area: float = 1935.5) -> Dict[str, float]
Field (in-situ) CBR from load–penetration data.
The procedure is identical to the laboratory CBR (ASTM D1883) but performed on the in-situ subgrade.
.. math::
\text{CBR} = \frac{\text{Test load at standard penetration}}
{\text{Standard load}} \times 100
Standard reference loads (for 1935.5 mm² = 3 in² piston):
- At 2.54 mm (0.1 in.): 13.24 kN
- At 5.08 mm (0.2 in.): 19.96 kN
| PARAMETER | DESCRIPTION |
|---|---|
penetration
|
Penetration values (mm).
TYPE:
|
load
|
Corresponding loads (kN).
TYPE:
|
area
|
Piston area (mm²). Standard 3 in² = 1935.5 mm².
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
dict
|
|
References
ASTM D4429 (2009). Standard Test Method for CBR (California Bearing Ratio) of Soils in Place.
Examples:
>>> from geoeq.site.field_cbr import field_cbr_test
>>> pen = [0, 0.64, 1.27, 1.91, 2.54, 3.81, 5.08, 7.62, 10.16, 12.70]
>>> load = [0, 0.5, 1.2, 2.5, 4.0, 6.5, 9.0, 13.0, 16.0, 18.0]
>>> res = field_cbr_test(pen, load)
>>> res['CBR'] > 0
True
Source code in geoeq/site/field_cbr.py
| Python | |
|---|---|
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 | |