Index: Ringtoets/Piping/src/Ringtoets.Piping.Data/DerivedPipingInput.cs =================================================================== diff -u -rb2b9fdf365e70928a05c57966eeed30d9050e528 -r1df1e9ae0057dde85489929cbf85d222c26e8c5f --- Ringtoets/Piping/src/Ringtoets.Piping.Data/DerivedPipingInput.cs (.../DerivedPipingInput.cs) (revision b2b9fdf365e70928a05c57966eeed30d9050e528) +++ Ringtoets/Piping/src/Ringtoets.Piping.Data/DerivedPipingInput.cs (.../DerivedPipingInput.cs) (revision 1df1e9ae0057dde85489929cbf85d222c26e8c5f) @@ -74,15 +74,15 @@ /// Gets the horizontal distance between entry and exit point. /// [m] /// - public LogNormalDistribution SeepageLength + public VariationCoefficientLogNormalDistribution SeepageLength { get { - LogNormalDistribution seepageLength = new LogNormalDistribution(2); + VariationCoefficientLogNormalDistribution seepageLength = new VariationCoefficientLogNormalDistribution(2); double seepageLengthMean = input.ExitPointL - input.EntryPointL; seepageLength.Mean = (RoundedDouble) seepageLengthMean; - seepageLength.StandardDeviation = (RoundedDouble) seepageLengthMean*seepageLengthStandardDeviationFraction; + seepageLength.CoefficientOfVariation = (RoundedDouble) seepageLengthStandardDeviationFraction; return seepageLength; }