Pile design¶
Pile design from soil properties. The interpretation of measured
load-test curves (Davisson, Chin, Hansen 80%, etc.) lives in
ge.site.
This page is the prediction side: predicting ultimate capacity
from \(\phi\), \(S_u\), \(\sigma'_v\), etc.
End bearing — \(q_p\)¶
Two regimes:
- Sand: \(q_p = \sigma'_v\,N_q^*\) — Meyerhof or Vesic for \(N_q^*\)
- Clay: \(q_p = 9\,S_u\) — Skempton
# Sand
ge.pile_end_bearing(phi=35, sigma_v_eff=100, method="meyerhof")
# {'q_p': 6311, 'Nq_star': 63.1, 'method': 'meyerhof'}
# Clay
ge.pile_end_bearing(Su=100)
# {'q_p': 900, 'Nc_star': 9.0, 'method': 'skempton_clay'}
Skin friction — \(f_s\) (three methods)¶
| Method | Form | When |
|---|---|---|
| α (Tomlinson 1957) | \(f_s = \alpha\,S_u\), \(\alpha\) from API RP 2A table | Clay, total-stress |
| β (Burland 1973) | \(f_s = \beta\,\sigma'_v\), \(\beta = K\tan\delta\) | Effective-stress, any soil |
| λ (Vijayvergiya-Focht 1972) | \(f_s = \lambda(\bar\sigma'_v + 2\bar S_u)\) | Long offshore piles |
# Alpha method
ge.pile_skin_friction(Su=20, method="alpha") # soft clay -> f_s = 20
ge.pile_skin_friction(Su=200, method="alpha") # stiff clay -> f_s = 70
# Beta method
ge.pile_skin_friction(sigma_v_eff=100, method="beta", phi=30)
# {'f_s': 28.87, 'beta': 0.289, 'method': 'beta'}
# Lambda method (offshore)
ge.pile_skin_friction(Su=50, sigma_v_eff=100, method="lambda")
Total capacity¶
ge.pile_capacity(D=0.3, L=10, q_p=2000, f_s=30, FS=3)
# {'Q_p': 141.4, 'Q_s': 282.7, 'Q_ult': 424.1, 'Q_all': 141.4}
Group efficiency¶
Two methods — Converse-Labarre (most common) and Feld:
ge.pile_group_efficiency(n=3, m=3, D=0.3, s=0.9)
# {'eta': 0.727, 'method': 'converse_labarre', ...}
Single-pile settlement (Vesic semi-empirical)¶
Three components: elastic compression of the shaft, tip settlement, shaft-friction transfer settlement.
API reference¶
pile_end_bearing
¶
pile_end_bearing(phi: float = None, sigma_v_eff: float = None, c: float = None, method: str = 'meyerhof', Su: float = None) -> dict
Unit tip resistance q_p (kPa) at the pile base.
Two regimes:
- Sand (drained): q_p = sigma'_v * N_q* Meyerhof: N_q* from chart -- approximation N_q* = exp(pi tan phi) * tan^2(45+phi/2) but capped per Meyerhof (1976) Fig 9.11. Vesic: N_q* = (1 + 2 K_0) / 3 * (tan phi)^? -- simplified here.
- Clay (undrained): q_p = 9 * Su (Skempton)
| PARAMETER | DESCRIPTION |
|---|---|
phi
|
Friction angle (degrees). Required for sand.
TYPE:
|
sigma_v_eff
|
Effective vertical stress at pile tip (kPa). Required for sand.
TYPE:
|
Su
|
Undrained shear strength at tip (kPa). Required for clay.
TYPE:
|
method
|
'meyerhof' | 'vesic' | 'skempton' (clay -- alias).
TYPE:
|
c
|
Optional drained cohesion (kPa). Adds c * Nc* contribution.
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
dict
|
|
Reference
Meyerhof (1976); Vesic (1977); Das (2014) Ch. 9.
Source code in geoeq/design/piles.py
pile_skin_friction
¶
pile_skin_friction(Su: float = None, sigma_v_eff: float = None, method: str = 'alpha', phi: float = None, alpha: float = None, beta: float = None, K: float = None, delta: float = None, lambda_: float = None, layer_thicknesses: Sequence[float] = None) -> dict
Unit shaft friction f_s along a pile.
Methods (drained vs total stress):
- alpha (Tomlinson 1957) -- total stress, for clays: f_s = alpha * Su
- beta (Burland 1973) -- effective stress, for clays or sands: f_s = beta * sigma'_v where beta = K * tan(delta). Default K = K0 = 1 - sin(phi); delta = phi.
- lambda (Vijayvergiya & Focht 1972) -- offshore long piles: f_s,avg = lambda * (sigma'_v_avg + 2 * Su_avg)
| PARAMETER | DESCRIPTION |
|---|---|
Su
|
Undrained shear strength (kPa). Required for alpha.
TYPE:
|
sigma_v_eff
|
Effective vertical stress at depth (kPa). Required for beta/lambda.
TYPE:
|
method
|
'alpha' | 'beta' | 'lambda'.
TYPE:
|
alpha
|
Method-specific parameters. Sensible defaults are computed.
TYPE:
|
beta
|
Method-specific parameters. Sensible defaults are computed.
TYPE:
|
K
|
Method-specific parameters. Sensible defaults are computed.
TYPE:
|
delta
|
Method-specific parameters. Sensible defaults are computed.
TYPE:
|
lambda_
|
Method-specific parameters. Sensible defaults are computed.
TYPE:
|
layer_thicknesses
|
For
TYPE:
|
Reference
Tomlinson (1957); Burland (1973); Vijayvergiya & Focht (1972).
Source code in geoeq/design/piles.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 | |
pile_capacity
¶
pile_capacity(D: float, L: float, q_p: float, f_s: float, area_base: float = None, perimeter: float = None, FS: float = 3.0) -> dict
Axial capacity Q_ult = Q_p + Q_s = q_p * A_p + f_s * As.
| PARAMETER | DESCRIPTION |
|---|---|
D
|
Pile diameter (m).
TYPE:
|
L
|
Pile length (embedded depth, m).
TYPE:
|
q_p
|
Unit tip resistance (kPa) -- from
TYPE:
|
f_s
|
Unit shaft friction (kPa) -- from
TYPE:
|
area_base
|
Base area (m^2). Default pi*D^2/4 (closed-ended round pile).
TYPE:
|
perimeter
|
Shaft perimeter (m). Default pi*D.
TYPE:
|
FS
|
Factor of safety on Q_ult.
TYPE:
|
Reference
Das (2014) Eq. 9.20.
Source code in geoeq/design/piles.py
pile_group_efficiency
¶
pile_group_efficiency(n: int, m: int, D: float, s: float, method: str = 'converse_labarre') -> dict
Group efficiency factor eta for an n x m pile group.
Methods: * Converse-Labarre: eta = 1 - [theta * ((n-1)m + (m-1)n)] / (90 * n * m) with theta = atan(D/s) in degrees. * Feld: each pile loses 1/16 capacity for each adjacent pile.
Reference
Converse & Labarre (1947); Feld (1943); Das (2014) Eq. 9.74.
Source code in geoeq/design/piles.py
pile_settlement
¶
pile_settlement(Q_w: float, Q_p: float, Q_s: float, D: float, L: float, Es: float, Ep: float = 25000000.0, mu_s: float = 0.3, Cp: float = 0.03, Cs: float = None, qp_ult: float = None) -> dict
Vesic's three-component settlement of a single pile.
s = s1 + s2 + s3
| PARAMETER | DESCRIPTION |
|---|---|
Q_w
|
Working axial load (kN).
TYPE:
|
Q_p
|
Tip load at working condition (kN).
TYPE:
|
Q_s
|
Shaft load at working condition (kN).
TYPE:
|
D
|
Pile diameter and length (m).
TYPE:
|
L
|
Pile diameter and length (m).
TYPE:
|
Es
|
Soil elastic modulus (kPa).
TYPE:
|
Ep
|
Pile material modulus (kPa). Default 25 GPa (concrete).
TYPE:
|
mu_s
|
Soil Poisson's ratio.
TYPE:
|
Cp
|
Empirical tip-settlement coefficient (Das Table 9.5). Default 0.03.
TYPE:
|
Cs
|
Shaft-settlement coefficient. Default 0.93 + 0.16 sqrt(L/D) * Cp.
TYPE:
|
qp_ult
|
Ultimate tip resistance (kPa). If given, used in s2 calc.
TYPE:
|
Reference
Vesic (1977); Das (2014) Eq. 9.83-9.86.