Calculate sediment permeability
mud_to_permeability.Rd
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.
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.
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))