Index: Ringtoets/Piping/src/Ringtoets.Piping.Service/PipingCalculationService.cs =================================================================== diff -u -r89488cc05b12fd5720cd28a4eeeb001dc9b1456d -rbd3d9017ec57de410afdb274e44cd933d670ce86 --- Ringtoets/Piping/src/Ringtoets.Piping.Service/PipingCalculationService.cs (.../PipingCalculationService.cs) (revision 89488cc05b12fd5720cd28a4eeeb001dc9b1456d) +++ Ringtoets/Piping/src/Ringtoets.Piping.Service/PipingCalculationService.cs (.../PipingCalculationService.cs) (revision bd3d9017ec57de410afdb274e44cd933d670ce86) @@ -20,7 +20,7 @@ // All rights reserved. using System; - +using Core.Common.Base.Data; using log4net; using Ringtoets.Piping.Data; using Ringtoets.Piping.KernelWrapper; @@ -105,22 +105,6 @@ } } - /// - /// Calculates the thickness of the coverage layer based on the values of the . - /// - /// The thickness of the coverage layer, or NaN if the thickness could not be calculated. - public static double CalculateThicknessCoverageLayer(PipingInput input) - { - try - { - return new PipingCalculator(CreateInputFromData(input), SubCalculatorFactory).CalculateThicknessCoverageLayer(); - } - catch (PipingCalculatorException) - { - return double.NaN; - } - } - private static PipingCalculatorInput CreateInputFromData(PipingInput inputParameters) { return new PipingCalculatorInput( @@ -150,14 +134,5 @@ inputParameters.SoilProfile ); } - - /// - /// Calculates the piezometric head at the exit point based on the values of the . - /// - /// The piezometric head at the exit point. - public static double CalculatePiezometricHeadAtExit(PipingInput input) - { - return new PipingCalculator(CreateInputFromData(input), SubCalculatorFactory).CalculatePiezometricHeadAtExit(); - } } } \ No newline at end of file