Index: Ringtoets/Piping/src/Ringtoets.Piping.Calculation/PipingCalculatorInput.cs =================================================================== diff -u -rb2ba7b44c143bc91056e634e2fb8b329994501cd -r3c10891728420f1c0aa0071574bbfb149710c556 --- Ringtoets/Piping/src/Ringtoets.Piping.Calculation/PipingCalculatorInput.cs (.../PipingCalculatorInput.cs) (revision b2ba7b44c143bc91056e634e2fb8b329994501cd) +++ Ringtoets/Piping/src/Ringtoets.Piping.Calculation/PipingCalculatorInput.cs (.../PipingCalculatorInput.cs) (revision 3c10891728420f1c0aa0071574bbfb149710c556) @@ -31,7 +31,6 @@ private readonly double waterVolumetricWeight; private readonly double upliftModelFactor; private readonly double assessmentLevel; - private readonly double piezometricHeadExit; private readonly double dampingFactorExit; private readonly double phreaticLevelExit; private readonly double criticalHeaveGradient; @@ -61,7 +60,6 @@ /// /// The calculation value used to account for uncertainty in the model for uplift. /// The outside high water level. [m] - /// The piezometric head at the exit point. [m] /// The damping factor at the exit point. /// The phreatic level at the exit point. [m] /// The critical exit gradient for heave. @@ -81,13 +79,12 @@ /// 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 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 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; this.upliftModelFactor = upliftModelFactor; this.assessmentLevel = assessmentLevel; - this.piezometricHeadExit = piezometricHeadExit; this.dampingFactorExit = dampingFactorExit; this.phreaticLevelExit = phreaticLevelExit; this.criticalHeaveGradient = criticalHeaveGradient; @@ -147,18 +144,6 @@ } /// - /// Gets the piezometric head at the exit point. - /// [m] - /// - public double PiezometricHeadExit - { - get - { - return piezometricHeadExit; - } - } - - /// /// Gets the damping factor at the exit point. /// public double DampingFactorExit