This function calculates the critical depth, along which failure of an infinite slope is most likely to occur. The term <em>infinite slope slide</em> is commonly used to describe a plane translational movement at a shallow depth, which is also parrallel to the surface. The effect of curvature at the extreme ends of the slope are ignored, which leads to a conservative results when dealing with either straight or concave slopes but overestimates the stability of convex curves and corners.
The basis for the solution is balancing the component of weight in the slipe direction, T, against the frictional resistance of the soil, R. i.e.
The most challenging aspect to the use of this function is understanding the properties of the soil within your slope. Ideally laboratory triaxial tests should be performed. Alternatively you reply on standard values for different soil types and combine this with an your knowledge of the how the slope is formed. As such through the appropriate selection of soil_c and soil_phi, this function may be used in a number of undrained or drained conditions:
In quick undrainedconditions (for example shortly after forming a slope) it is usual to only consider the undrained cohesion (undrained shear strength) of the soil, which implies that no drainage of water from between the soil granual pores (porewater) has been allowed to occur. In these circumstances any increase in prore pressure will equal any increase in total stress and therefore no increase in effective stress occurs. In such a circumstance soil_c= and soil_phi=0, where is the undrained cohesive strength of the soil. As such overall shear strength of the soil is
Note the depth to water is not used in these calculations.
In consolidated-undrained conditions, some disipation of porewater is assumed so you should be looking for values of soil_c= and soil_phi=, where the subscript 'cu' refers to the consolidated-undrained conditions of the soil. Laboratory test are almost certainly need to find these values, with the eventual shear strength of the soil described by
It is important in these types of conditions, that depth of the water table, H, is set to -1, thereby preventing the hydrostatic pressure of any water from reducing the total normal stress, .
In drained conditions, the consolidation of the soil is assumed to be complete, so although water maybe within the slope, there is no excess water pore pressures associated with past loads - only hydrostatic pressures. For normally consolidated soils, and , where is the effective angle of internal friction which describes the proportion of the effective normal stress () that contributes to the shear strength. In cases where the soil is consolidated by force there maybe some apparent cohesion, thus we can also define .
The overall effective shear strength is then defined as
The results from this function can appear confussing, given certain input combinations.
When the soil has no base shear strength, and the soil is either totally dry or totally saturated, i.e. soil_c=0 and H=0 or H=-1, then this function will return a critical depth of zero. This means that the slope can fail at any depth and no one height is any more stable than another. Logically this is correct, since as you decend deeper into the soil the slip activating force T will grow linearly, mean while the resistant force R will also grow linearly and the ratio between T and R will remain constant.
Example 1
The soil in a long slope has an undrained shear strength of 50kN/m2 and a unit density of 2000kg/m3. Estimate the depth at which a shear slip may develop for slopes between 10 degrees and 30 degrees.
#include <stdio.h>#include <codecogs/engineering/soil/critical_depth_inf.h>int main(){double soil_density=2000; // kg/m3double soil_c=50000; // undrained strength of soil of 50kN/m2for(double slope=10;slope<30;slope++)// iterate over possible slopes{double zc=Engineering::Soil::critical_depth_inf(slope, 2, soil_density, soil_c, 0);
printf("\n slope=%lf critical depth=%lf",slope, zc);
}return0;
}
You wish to create a long slope within a quartz sand, which you can assume to quickly become fully drained during construction. The water table is estimated to run parrallel to the surface at a depth of 2m. Estimate the depth at which failure is likely to occur on a 30 degree slope, assuming a factor of safety of 1.5 (i.e. you what a conservatively high estimate of a possible slip plane).
The distance H beneath the surface at which the soil is fully saturated. Use H=-1 for unsaturated or undrained conditions and H=0 for fully saturated everywhere. [m]
soil_density
The density of soil, . []
soil_c
The natural cohesion (base shear strength) of the soil. In undrained conditions this is often written as , and in drained conditions it becomes the effective base shear strength usually written as . In naturally drained soils, is often zero.
soil_phi
The angle of effective internal friction, . [degrees]
F
Default value = 1
Source Code
Source code is available when you buy a Commercial licence.