A truncated normally distributed uncertainty. The minimum and the maximum possible value of the uncertain scalar is described by a nominal value and an interval. See also BaseUncertainty uncertainty for general information.
Similarly to IntervalTolerance, this description utilizes:
And, additionally,
Consequently, the parameters of the underlaid truncated normal distribution, are computed from the given parameterization in the following way:
tol = max(absTol, relTol * |nominal|) lower = nominal − tol upper = nominal + tol stdDev = tol/stdDevFactor
For example, the parameter R of a resistor has the nominal value of 200 Ω, the minimum possible value of 190 Ω and the maximum possible value 210 Ω. These limits are considered being at 2*stdDev (standard deviation σ) of the non-truncated normal distribution, i.e. at a probability of 95.4 %. This yields the following parameters of truncated normal distribution:
unitValue ="Ohm"
,
nominal = 200
,
relTol = 0.05
(and absTol = 0
),
stdDevFactor = 2
or
unitValue ="Ohm"
,
nominal = 200
,
absTol = 10
(and relTol = 0
),
stdDevFactor = 2
.