Index: Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Data/Input/Structures/StructuresClosureVerticalWallCalculationInput.cs =================================================================== diff -u -r2a896243ca24205f8e98db1b61e8148d1d9b9062 -r76f856cf99bc5f5b48b437848f496431bf78f452 --- Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Data/Input/Structures/StructuresClosureVerticalWallCalculationInput.cs (.../StructuresClosureVerticalWallCalculationInput.cs) (revision 2a896243ca24205f8e98db1b61e8148d1d9b9062) +++ Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Data/Input/Structures/StructuresClosureVerticalWallCalculationInput.cs (.../StructuresClosureVerticalWallCalculationInput.cs) (revision 76f856cf99bc5f5b48b437848f496431bf78f452) @@ -38,7 +38,7 @@ private readonly double levelCrestStructureNotClosingMean; private readonly double levelCrestStructureNotClosingStandardDeviation; private readonly double widthFlowAperturesMean; - private readonly double widthFlowAperturesVariation; + private readonly double widthFlowAperturesStandardDeviation; private readonly double deviationWaveDirection; /// @@ -76,7 +76,7 @@ /// The mean of the crest level of the structure when not closing. /// The standard deviation of the crest level of the structure when not closing. /// The mean of the width flow apertures. - /// The variation of the width flow apertures. + /// The standard deviation of the width flow apertures. /// The deviation of the wave direction. public StructuresClosureVerticalWallCalculationInput(long hydraulicBoundaryLocationId, double sectionNormal, @@ -100,7 +100,7 @@ double structureNormalOrientation, double modelFactorSuperCriticalFlowMean, double modelFactorSuperCriticalFlowStandardDeviation, double levelCrestStructureNotClosingMean, double levelCrestStructureNotClosingStandardDeviation, - double widthFlowAperturesMean, double widthFlowAperturesVariation, + double widthFlowAperturesMean, double widthFlowAperturesStandardDeviation, double deviationWaveDirection) : base(hydraulicBoundaryLocationId, sectionNormal, @@ -128,7 +128,7 @@ this.levelCrestStructureNotClosingMean = levelCrestStructureNotClosingMean; this.levelCrestStructureNotClosingStandardDeviation = levelCrestStructureNotClosingStandardDeviation; this.widthFlowAperturesMean = widthFlowAperturesMean; - this.widthFlowAperturesVariation = widthFlowAperturesVariation; + this.widthFlowAperturesStandardDeviation = widthFlowAperturesStandardDeviation; this.deviationWaveDirection = deviationWaveDirection; } @@ -162,7 +162,7 @@ yield return new DeterministicHydraRingVariable(61, structureNormalOrientation); yield return new NormalHydraRingVariable(62, HydraRingDeviationType.Standard, modelFactorSuperCriticalFlowMean, modelFactorSuperCriticalFlowStandardDeviation); yield return new NormalHydraRingVariable(72, HydraRingDeviationType.Standard, levelCrestStructureNotClosingMean, levelCrestStructureNotClosingStandardDeviation); - yield return new NormalHydraRingVariable(106, HydraRingDeviationType.Variation, widthFlowAperturesMean, widthFlowAperturesVariation); + yield return new NormalHydraRingVariable(106, HydraRingDeviationType.Variation, widthFlowAperturesMean, widthFlowAperturesStandardDeviation); yield return new DeterministicHydraRingVariable(107, deviationWaveDirection); } }