Min/Max Grain Size #578
-
Hello, The distribution of my equivalent diameters are defined such that the standard deviation is larger than the mean. This introduces several problems, specifically very tiny and very large grains. I tried defining lower and upper bounds for the grain sizes, using the
However, the grain sizes were still out of the specified bounds. As such, I was wondering whether it is possible to define a minimum and maximum grain size with the lognormal distribution, and what that command would look like. Thanks in advance. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
In your case, you can specify endpoints using |
Beta Was this translation helpful? Give feedback.
diameq:interval(0.0174,2.0158):lognormal(0.20766,0.27155)
is not proper syntax.diameq:interval(0.0174,2.0158),diameq:lognormal(0.20766,0.27155)
works in terms of syntax, but would not be very good practice.In your case, you can specify endpoints using
from
andto
:diameq:lognormal(0.20766,0.27155,from=0.0174,to=2.0158)
, as described in Statistical Distributions.