Index: Ringtoets/Piping/src/Ringtoets.Piping.Data/DerivedPipingInput.cs =================================================================== diff -u -r1e4d77c17c6eac78bfd705efdff9e52b4fca2c7e -r5b8f476716cb75977616203318fa250f608fe7a5 --- Ringtoets/Piping/src/Ringtoets.Piping.Data/DerivedPipingInput.cs (.../DerivedPipingInput.cs) (revision 1e4d77c17c6eac78bfd705efdff9e52b4fca2c7e) +++ Ringtoets/Piping/src/Ringtoets.Piping.Data/DerivedPipingInput.cs (.../DerivedPipingInput.cs) (revision 5b8f476716cb75977616203318fa250f608fe7a5) @@ -81,11 +81,11 @@ /// /// Gets the seepage length. /// - public LognormalDistribution SeepageLength + public LogNormalDistribution SeepageLength { get { - LognormalDistribution seepageLength = new LognormalDistribution(2); + LogNormalDistribution seepageLength = new LogNormalDistribution(2); double seepageLengthMean = input.ExitPointL - input.EntryPointL; if (seepageLengthMean > 0) { @@ -105,11 +105,11 @@ /// /// Gets the thickness coverage layer. /// - public LognormalDistribution ThicknessCoverageLayer + public LogNormalDistribution ThicknessCoverageLayer { get { - LognormalDistribution thicknessCoverageLayer = new LognormalDistribution(2) + LogNormalDistribution thicknessCoverageLayer = new LogNormalDistribution(2) { StandardDeviation = (RoundedDouble) 0.5 }; @@ -129,11 +129,11 @@ /// /// gets the thickness aquifer layer. /// - public LognormalDistribution ThicknessAquiferLayer + public LogNormalDistribution ThicknessAquiferLayer { get { - LognormalDistribution thicknessAquiferLayer = new LognormalDistribution(2) + LogNormalDistribution thicknessAquiferLayer = new LogNormalDistribution(2) { StandardDeviation = (RoundedDouble) 0.5 }; @@ -157,7 +157,7 @@ } } - private static void TrySetThicknessAquiferLayerMean(LognormalDistribution thicknessAquiferLayer, double thicknessTopAquiferLayer) + private static void TrySetThicknessAquiferLayerMean(LogNormalDistribution thicknessAquiferLayer, double thicknessTopAquiferLayer) { if (thicknessTopAquiferLayer > 0) { @@ -186,7 +186,7 @@ } } - private void TrySetThicknessCoverageLayer(LognormalDistribution thicknessCoverageLayer) + private void TrySetThicknessCoverageLayer(LogNormalDistribution thicknessCoverageLayer) { try {