Pile lateral behaviour¶
- groundhog.deepfoundations.lateralresponse.lateral.pilegroupeffect_reesevanimpe(pile_x, pile_y, pile_diameters, load_x, load_y, show_fig=True, plot_height=600, plot_width=400, **kwargs)[source]¶
When piles are arranged in a group, they influence one another and the lateral reaction for a given displacement can be less than that for a single pile. Reese and Van Impe suggest a method for calculating the efficiency of each pile. A distinction is made between in-line leading piles, in-line trailing piles and side-by-side piles. Based on the direction of loading and inter-pile distance, a reduction factor (p-multiplier) is calculated for each pile pair. The efficiency factors for each pile pair are multiplied to provide the overall efficiency for the pile considered. In this function, the centers of the piles are defined using their (X,Y) coordinates. The direction of loading is defined using the X- and Y-component of the loading vector. Note that the magnitude of this loading vector (norm) does not play a role in the calculation. The diameter of the pile is also required to determine the normalised pile spacing. For piles which is neither perfectly inline or side-by-side, the inline and side-by-side efficiencies are combined using the angle to the loading direction.
- Parameters:
pile_x – List of X-coordinates of the pile centers (\(x\)) [m]
pile_y – List of Y-coordinates of the pile centers (\(y\)) [m]
pile_diameters – List of pile diameters (\(y\)) [m]
load_x – X-component of the load vector (\(x_{\text{load}}\))
load_y – Y-component of the load vector (\(x_{\text{load}}\))
show_fig – Boolean determining whether the figures for the Chin-Kondler construction need to be plotted (default behaviour) or returned in the output dictionary.
\[ \begin{align}\begin{aligned}\text{Side by side piles: } e = 0.64 \left( \frac{s}{D} \right)^{0.34} \text{ for } 1 \leq \frac{s}{D} \leq 3.75, e=1 \text{ for } \frac{s}{D} > 3.75\\\text{In-line leading piles: } e = 0.70 \left( \frac{s}{D} \right)^{0.26} \text{ for } 1 \leq \frac{s}{D} \leq 4 , e=1 \text{ for } \frac{s}{D} > 4\\\text{In-line trailing piles: } e = 0.48 \left( \frac{s}{D} \right)^{0.38} \text{ for } 1 \leq \frac{s}{D} \leq 7 , e=1 \text{ for } \frac{s}{D} > 7\\\text{Oblique orientation: } e = \sqrt{e_{\text{inline}}^2 \cos^2 \varphi + e_{\text{side-by-side}}^2 \sin^2 \varphi} \\p_{\text{group}} = p_{\text{single}} e_{\text{combined}} = p_{\text{single}} \Pi_j e_j\end{aligned}\end{align} \]- Returns:
Dictionary with the following keys:
’efficiency_matrix’: Matrix with the efficiency of each pile vis-à-vis the others (row i, column j quantifies the influence of pile j on pile i)
’efficiencies’: List with the combined efficiencies of each pile (list with an element for each pile)
’pile_fig’: Figure with the dimensions of the piles.
- groundhog.deepfoundations.lateralresponse.lateral.reinforced_circularsection_inertia(diameter, modulus_ratio, n_bars, offset, rebar_diameter, maximum_resistance=True, **kwargs)[source]¶
Calculates the combined inertia of a circular section, reinforced with rebar rods at equal center-to-center distance from the concrete section center. Steiner’s theorem is applied using the center-to-center distance between the center of the concrete section and the center of the rebar rod. The positioning of the rebar rods for maximum or minimum bending resistance can be taken. Their offset from the bending axis can then be derived.
- Parameters:
diameter – Diameter of the concrete section (\(D\)) [m] - Suggested range: diameter >= 0.0
modulus_ratio – Ratio of Young’s modulus of steel to Young’s modulus of concrete (\(n\)) [-] - Suggested range: modulus_ratio >= 0.0
n_bars – Number of rebar rods (\(N\)) [-] - Suggested range: n_bars >= 1.0
offset – Center-to-center distance between rebar rods and concrete section center (\(r\)) [m] - Suggested range: offset >= 0.0
rebar_diameter – Diameter of the rebar rods (\(d\)) [m] - Suggested range: rebar_diameter >= 0.0
maximum_resistance – Determines whether the rebar rods should be positioned for maximum bending resistance (if true) (optional, default= True)
\[ \begin{align}\begin{aligned}I_s = \frac{\pi d^4}{64}\\A_s = \frac{\pi d^2}{4}\\A_{\text{s,transformed}} = n \cdot A_s\\I_c = \frac{\pi D^4}{64}\\I_{\text{combined}} = I_c + \sum_{i=1}^N \left( I_s + A_{\text{s,transformed}} r^2 \right)\end{aligned}\end{align} \]- Returns:
Dictionary with the following keys:
’Start angle [deg]’: Angle between the bending axis and the first rebar rod [deg]
’Rebar angles [deg]’: Angles between rebar rods and the bending axis [deg]
’Offsets [m]’: Offsets of the rebar rods to the bending axis [m]
’Rebar inertia [m4]’: Total inertia of the rebar (\(\sum_{i=1}^N \left( I_s + A_s r^2 \right)\)) [m4]
’Ic [m4]’: Concrete section inertia [m4]
’I combined [m4]’: Combined inertia of the reinforced section [m4]