View source: R/scr_mix_calcs.R
scr_mix_calcs | R Documentation |
Compute air-dry component masses to use based on silt-size and clay-size mass
percentages and extant water contents
\loadmathjax In general, the return value of this function will be further
processed and passed to sand_w_scr_mix_calcs()
. This would be useful when blending with
sand to yield a 3-component mixture with known sand content and SCR
scr_mix_calcs( final_OD_kg, scr, silt_silty, clay_silty, silt_clayey, clay_clayey, w_silty, w_clayey )
final_OD_kg |
oven-dry mass of particles < 53 microns in final mixture (in kg) |
scr |
silt-to clay ratio, computed as \mjeqn\fracpercent silt-sizepercent clay-size |
silt_silty |
percent silt in the silty soil (decimal) |
clay_silty |
percent clay in the silty soil (decimal) |
silt_clayey |
percent silt in the clayey soil (decimal) |
clay_clayey |
percent clay in the clayey soil (decimal) |
w_silty |
gravimetric water content of silty soil (decimal) |
w_clayey |
gravimetric water content of clayey soil (decimal) |
a list of length 4. Elements include:
tibble with two columns: the air-dry mass of component A (the silty soil) and component B (the clayey soil)
A tibble with two columns: the oven-dry mass fraction of each component comprising the new mix (summing to 1)
The sand-size content (as a decimal) of the new mixture on an oven-dry basis
The gravimetric water content (as a decimal) of the new mix.
# this generates component masses which yield 100 kg of # combined silt-size and clay-size particles. new_fines_mix_data <- scr_mix_calcs( final_OD_kg = 100, scr = 2, silt_silty = 0.9, clay_silty = 0.06, silt_clayey = 0.43, clay_clayey = 0.54, w_silty = 0.001, w_clayey = 0.04 ) new_fines_mix_data
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.