Skip to contents

This function takes a percent of mud/silt at a location and returns a measure of permeability. The default parameterisation comes from Matt Pace's thesis for fine sediments.

Usage

mud_to_permeability(percent_mud, scalar = -2.171, constant = -10.232)

Arguments

percent_mud

The amount of all sediment at a location smaller than sand (mud/silt and finer) in percent.

scalar

A parameter in the relationship

constant

A parameter in the relationship.

Value

A numeric vector containing estimates of sediment permeability in m^2 (can be length 1).

See also

Other Sediment properties: D50_to_porosity()

Examples

data <- data.frame(Silt = seq(0.5, 100, length.out = 100)) %>%
mutate(Permeability = mud_to_permeability(Silt))

ggplot(data) +
geom_line(aes(x = Silt, y = Permeability)) +
scale_y_continuous(trans = "log", breaks = c(0.000000000000001, 0.0000000000001, 0.00000000001))