Sample preparation

groundhog.siteinvestigation.labtesting.samplepreparation.undercompaction_cohesionless_ladd(sample_height, no_layers, undercompaction_deepest, undercompaction_shallowest=0, **kwargs)[source]

When soil sample have to be reconstituted to a specific relative density, the sample is generally prepared in several layers of equal mass and tamping or vibration is used to obtain the desired volume in the sample mould.

If each layer is however compacted to the desired relative density, a non-uniform density profile will be obtained as the lower layers will still be compacted to a certain degree by the tamping or vibration on the upper layers.

To address this shortcoming, the undercompaction method is used (Ladd, 1978) which compacts the deeper layers to a lesser degree than the higher layers. The degree of undercompaction of the deepest layer is chosen based on experience (e.g. from density profiling using core loggers) and the undercompaction degree is then chosen to vary linearly from the bottom to the top of the sample.

This function calculates the undercompaction degrees for each layer (using a linear variation) and the height to the top of each layer for the given undercompaction degrees.

Parameters:
  • sample_height – Total height of the sample (\(H_0\)) [\(m\)] - Suggested range: 0.0 <= sample_height <= 1.0

  • no_layers – Number of layers for the sample (\(N\)) [\(-\)] - Suggested range: 1.0 <= no_layers <= 10.0

  • undercompaction_deepest – Chosen undercompaction degree of the deepest layer (\(U_1\)) [\(pct\)] - Suggested range: 0.0 <= undercompaction_deepest <= 10.0

  • undercompaction_shallowest – Chosen undercompaction degree of the shallowest layer (\(U_N\)) [\(pct\)] (default=0pct) - Suggested range: 0.0 <= undercompaction_deepest <= 10.0

\[ \begin{align}\begin{aligned}U_i = U_1 - \left[ \frac{U_1 - U_N}{N - 1} \cdot (i - 1) \right]\\h_i = \frac{H_0}{N} \left[ (i - 1) + (1 + U_i) \right]\end{aligned}\end{align} \]
Returns:

Dictionary with the following keys:

  • ’U [-]’: Undercompaction degrees of each layer starting from the deepest layer (\(U\)) [\(-\)]

  • ’h [m]’: Height to the top of each layer (\(h\)) [\(m\)]

../_images/undercompaction_cohesionless_ladd_1.png

Density profiles of triaxial silt samples using different undercompaction degrees

Reference - R. Ladd, “Preparing Test Specimens Using Undercompaction,” Geotechnical Testing Journal 1, no. 1 (1978): 16-23. https://doi.org/10.1520/GTJ10364J