Index: Ringtoets/Piping/src/Ringtoets.Piping.Data/DerivedPipingInput.cs =================================================================== diff -u -r81fa8a9bf3bd503cbd280e88b8f6037a840cff12 -rd6fe8399e8398224cf1bda9259052232d85b85a4 --- Ringtoets/Piping/src/Ringtoets.Piping.Data/DerivedPipingInput.cs (.../DerivedPipingInput.cs) (revision 81fa8a9bf3bd503cbd280e88b8f6037a840cff12) +++ Ringtoets/Piping/src/Ringtoets.Piping.Data/DerivedPipingInput.cs (.../DerivedPipingInput.cs) (revision d6fe8399e8398224cf1bda9259052232d85b85a4) @@ -205,7 +205,7 @@ private void UpdateThicknessAquiferLayerMean(LogNormalDistribution thicknessAquiferLayer) { StochasticSoilProfile stochasticSoilProfile = input.StochasticSoilProfile; - RingtoetsPipingSurfaceLine surfaceLine = input.SurfaceLine; + PipingSurfaceLine surfaceLine = input.SurfaceLine; RoundedDouble exitPointL = input.ExitPointL; if (stochasticSoilProfile?.SoilProfile != null && surfaceLine != null && !double.IsNaN(exitPointL)) @@ -223,7 +223,7 @@ private void UpdateThicknessCoverageLayerMean(LogNormalDistribution thicknessCoverageLayerDistribution) { StochasticSoilProfile stochasticSoilProfile = input.StochasticSoilProfile; - RingtoetsPipingSurfaceLine surfaceLine = input.SurfaceLine; + PipingSurfaceLine surfaceLine = input.SurfaceLine; RoundedDouble exitPointL = input.ExitPointL; if (stochasticSoilProfile?.SoilProfile != null && surfaceLine != null && !double.IsNaN(exitPointL)) @@ -469,7 +469,7 @@ private PipingSoilLayer[] GetConsecutiveAquiferLayers() { - RingtoetsPipingSurfaceLine surfaceLine = input.SurfaceLine; + PipingSurfaceLine surfaceLine = input.SurfaceLine; PipingSoilProfile soilProfile = input.StochasticSoilProfile?.SoilProfile; RoundedDouble exitPointL = input.ExitPointL; @@ -483,7 +483,7 @@ private PipingSoilLayer[] GetConsecutiveCoverageLayers() { - RingtoetsPipingSurfaceLine surfaceLine = input.SurfaceLine; + PipingSurfaceLine surfaceLine = input.SurfaceLine; PipingSoilProfile soilProfile = input.StochasticSoilProfile?.SoilProfile; RoundedDouble exitPointL = input.ExitPointL; @@ -498,7 +498,7 @@ return new PipingSoilLayer[0]; } - private static double GetThicknessTopAquiferLayer(PipingSoilProfile soilProfile, RingtoetsPipingSurfaceLine surfaceLine, RoundedDouble exitPointL) + private static double GetThicknessTopAquiferLayer(PipingSoilProfile soilProfile, PipingSurfaceLine surfaceLine, RoundedDouble exitPointL) { try { @@ -515,7 +515,7 @@ } } - private static double GetThicknessCoverageLayers(PipingSoilProfile soilProfile, RingtoetsPipingSurfaceLine surfaceLine, RoundedDouble exitPointL) + private static double GetThicknessCoverageLayers(PipingSoilProfile soilProfile, PipingSurfaceLine surfaceLine, RoundedDouble exitPointL) { try {