Index: src/Plugins/Wti/Wti.Calculation/Piping/PipingCalculationInput.cs =================================================================== diff -u -r2f9f3715577a997e8717aedc5f3667627ba7eac5 -re61dfe357a722430029affaa9a28e6bd2cbbc281 --- src/Plugins/Wti/Wti.Calculation/Piping/PipingCalculationInput.cs (.../PipingCalculationInput.cs) (revision 2f9f3715577a997e8717aedc5f3667627ba7eac5) +++ src/Plugins/Wti/Wti.Calculation/Piping/PipingCalculationInput.cs (.../PipingCalculationInput.cs) (revision e61dfe357a722430029affaa9a28e6bd2cbbc281) @@ -7,7 +7,6 @@ { private readonly double waterVolumetricWeight; private readonly double upliftModelFactor; - private readonly double effectiveStress; private readonly double assessmentLevel; private readonly double piezometricHeadExit; private readonly double dampingFactorExit; @@ -16,7 +15,7 @@ private readonly double criticalHeaveGradient; private readonly double thicknessCoverageLayer; private readonly double sellmeijerModelFactor; - private readonly double reductionFactorSellmeijer; + private readonly double sellmeijerReductionFactor; private readonly double seepageLength; private readonly double sandParticlesVolumicWeight; private readonly double whitesDragCoefficient; @@ -54,17 +53,6 @@ } /// - /// Gets the effective stress of a layer. - /// - public double EffectiveStress - { - get - { - return effectiveStress; - } - } - - /// /// Gets the outside high water level. /// public double AssessmentLevel @@ -154,11 +142,11 @@ /// /// Gets the reduction factor Sellmeijer. /// - public double ReductionFactorSellmeijer + public double SellmeijerReductionFactor { get { - return reductionFactorSellmeijer; + return sellmeijerReductionFactor; } } @@ -291,7 +279,6 @@ /// /// The volumetric weight of water. /// The calculation value used to account for uncertainty in the model for uplift. - /// The effective stress of a layer. /// The outside high water level. /// The piezometric head at the exit point. /// The damping factor at the exit point. @@ -300,7 +287,7 @@ /// The critical exit gradient for heave. /// The total thickness of the coverage layer at the exit point. /// The calculation value used to account for uncertainty in the model for Sellmeijer. - /// The reduction factor Sellmeijer. + /// The reduction factor Sellmeijer. /// The horizontal distance between entree and exit point. /// The (lowerbound) volumic weight of sand grain material of a sand layer under water. /// The White's drag coefficient. @@ -312,34 +299,10 @@ /// The mean diameter of small scale tests applied to different kinds of sand, on which the formula of Sellmeijer has been fit. /// The angle of the force balance representing the amount in which sand grains resist rolling. /// The x coordinate of the exit point. - public PipingCalculationInput( - double waterVolumetricWeight, - double upliftModelFactor, - double effectiveStress, - double assessmentLevel, - double piezometricHeadExit, - double dampingFactorExit, - double phreaticLevelExit, - double piezometricHeadPolder, - double criticalHeaveGradient, - double thicknessCoverageLayer, - double sellmeijerModelFactor, - double reductionFactorSellmeijer, - double seepageLength, - double sandParticlesVolumicWeight, - double whitesDragCoefficient, - double diameter70, - double darcyPermeability, - double waterKinematicViscosity, - double gravity, - double thicknessAquiferLayer, - double meanDiameter70, - double beddingAngle, - double exitPointXCoordinate) + public PipingCalculationInput(double waterVolumetricWeight, 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) { this.waterVolumetricWeight = waterVolumetricWeight; this.upliftModelFactor = upliftModelFactor; - this.effectiveStress = effectiveStress; this.assessmentLevel = assessmentLevel; this.piezometricHeadExit = piezometricHeadExit; this.dampingFactorExit = dampingFactorExit; @@ -348,7 +311,7 @@ this.criticalHeaveGradient = criticalHeaveGradient; this.thicknessCoverageLayer = thicknessCoverageLayer; this.sellmeijerModelFactor = sellmeijerModelFactor; - this.reductionFactorSellmeijer = reductionFactorSellmeijer; + this.sellmeijerReductionFactor = sellmeijerReductionFactor; this.seepageLength = seepageLength; this.sandParticlesVolumicWeight = sandParticlesVolumicWeight; this.whitesDragCoefficient = whitesDragCoefficient;