massFractionGSD(acut,
amin=0.01,
amax=100.0,
slope=-3.5)
| source code
|
Calculate the mass fraction of a subset of grain sizes from a grain
size distribution.
A minimum of two subsets is created, so two masses are returned. Can
be anything higher than that, depending on how many cuts are
requested.
- Parameters:
acut (list(float)) - The grain size(s) at which the cuts are made. Can be a float or a
list.
amin (float) - The minimum grain size in the distribution
(default: 0.01)
amax (float) - The maximum grain size in the distribution
(default: 100)
slope (float) - The slope of the a-dependence of the distribution. Default is the
MRN value of -3.5
(default: -3.5)
- Returns: [float,float,...]
- The mass fraction of the first slice, the second slice, etc,
depending on how many cuts are requested. Minimum of two.
|