Index: Ringtoets/Piping/src/Ringtoets.Piping.Calculation/PipingCalculatorInput.cs =================================================================== diff -u -r1069905ff1d4bb81d6acff6c130a4bed0b041b58 -rb2ba7b44c143bc91056e634e2fb8b329994501cd --- Ringtoets/Piping/src/Ringtoets.Piping.Calculation/PipingCalculatorInput.cs (.../PipingCalculatorInput.cs) (revision 1069905ff1d4bb81d6acff6c130a4bed0b041b58) +++ Ringtoets/Piping/src/Ringtoets.Piping.Calculation/PipingCalculatorInput.cs (.../PipingCalculatorInput.cs) (revision b2ba7b44c143bc91056e634e2fb8b329994501cd) @@ -34,7 +34,6 @@ private readonly double piezometricHeadExit; private readonly double dampingFactorExit; private readonly double phreaticLevelExit; - private readonly double piezometricHeadPolder; private readonly double criticalHeaveGradient; private readonly double thicknessCoverageLayer; private readonly double sellmeijerModelFactor; @@ -65,7 +64,6 @@ /// The piezometric head at the exit point. [m] /// The damping factor at the exit point. /// The phreatic level at the exit point. [m] - /// The piezometric head in the hinterland. [m] /// The critical exit gradient for heave. /// The total thickness of the coverage layer at the exit point. [m] /// The calculation value used to account for uncertainty in the model for Sellmeijer. @@ -83,7 +81,7 @@ /// The x coordinate of the exit point. [m] /// The surface line. /// The profile which contains a 1 dimensional definition of soil layers with properties. - public PipingCalculatorInput(double waterVolumetricWeight, double saturatedVolumicWeightOfCoverageLayer, double upliftModelFactor, double assessmentLevel, double piezometricHeadExit, double dampingFactorExit, double phreaticLevelExit, double piezometricHeadPolder, double criticalHeaveGradient, double thicknessCoverageLayer, double sellmeijerModelFactor, double sellmeijerReductionFactor, double seepageLength, double sandParticlesVolumicWeight, double whitesDragCoefficient, double diameter70, double darcyPermeability, double waterKinematicViscosity, double gravity, double thicknessAquiferLayer, double meanDiameter70, double beddingAngle, double exitPointXCoordinate, RingtoetsPipingSurfaceLine surfaceLine, PipingSoilProfile soilProfile) + public PipingCalculatorInput(double waterVolumetricWeight, double saturatedVolumicWeightOfCoverageLayer, double upliftModelFactor, double assessmentLevel, double piezometricHeadExit, double dampingFactorExit, double phreaticLevelExit, double criticalHeaveGradient, double thicknessCoverageLayer, double sellmeijerModelFactor, double sellmeijerReductionFactor, double seepageLength, double sandParticlesVolumicWeight, double whitesDragCoefficient, double diameter70, double darcyPermeability, double waterKinematicViscosity, double gravity, double thicknessAquiferLayer, double meanDiameter70, double beddingAngle, double exitPointXCoordinate, RingtoetsPipingSurfaceLine surfaceLine, PipingSoilProfile soilProfile) { this.waterVolumetricWeight = waterVolumetricWeight; this.saturatedVolumicWeightOfCoverageLayer = saturatedVolumicWeightOfCoverageLayer; @@ -92,7 +90,6 @@ this.piezometricHeadExit = piezometricHeadExit; this.dampingFactorExit = dampingFactorExit; this.phreaticLevelExit = phreaticLevelExit; - this.piezometricHeadPolder = piezometricHeadPolder; this.criticalHeaveGradient = criticalHeaveGradient; this.thicknessCoverageLayer = thicknessCoverageLayer; this.sellmeijerModelFactor = sellmeijerModelFactor; @@ -185,18 +182,6 @@ } /// - /// Gets the piezometric head in the hinterland. - /// [m] - /// - public double PiezometricHeadPolder - { - get - { - return piezometricHeadPolder; - } - } - - /// /// Gets the critical exit gradient for heave. /// public double CriticalHeaveGradient