Index: Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Data/HeightStructuresInput.cs =================================================================== diff -u -r57eb47b74e13d3893ded8879b38f18c1e0ae58a1 -r0d12e759b6e46290d83d04a6a5760fe467b339ab --- Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Data/HeightStructuresInput.cs (.../HeightStructuresInput.cs) (revision 57eb47b74e13d3893ded8879b38f18c1e0ae58a1) +++ Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Data/HeightStructuresInput.cs (.../HeightStructuresInput.cs) (revision 0d12e759b6e46290d83d04a6a5760fe467b339ab) @@ -40,10 +40,10 @@ private readonly LogNormalDistribution storageStructureArea; private readonly LogNormalDistribution flowWidthAtBottomProtection; private readonly LogNormalDistribution criticalOvertoppingDischarge; - private readonly NormalDistribution widthOfFlowApertures; + private readonly NormalDistribution widthFlowApertures; private readonly LogNormalDistribution stormDuration; private RoundedDouble structureNormalOrientation; - private RoundedDouble deviationOfTheWaveDirection; + private RoundedDouble deviationWaveDirection; private double failureProbabilityStructureWithErosion; /// @@ -90,12 +90,12 @@ }; criticalOvertoppingDischarge.SetStandardDeviationFromVariationCoefficient(0.15); - widthOfFlowApertures = new NormalDistribution(2) + widthFlowApertures = new NormalDistribution(2) { StandardDeviation = (RoundedDouble) 0.05 }; - deviationOfTheWaveDirection = new RoundedDouble(2); + deviationWaveDirection = new RoundedDouble(2); stormDuration = new LogNormalDistribution(2) { @@ -140,15 +140,15 @@ /// Gets or sets the deviation of the wave's direction. /// [degrees] /// - public RoundedDouble DeviationOfTheWaveDirection + public RoundedDouble DeviationWaveDirection { get { - return deviationOfTheWaveDirection; + return deviationWaveDirection; } set { - deviationOfTheWaveDirection = value.ToPrecision(deviationOfTheWaveDirection.NumberOfDecimalPlaces); + deviationWaveDirection = value.ToPrecision(deviationWaveDirection.NumberOfDecimalPlaces); } } @@ -311,16 +311,16 @@ /// Gets or sets the width of flow apertures. /// [m] /// - public NormalDistribution WidthOfFlowApertures + public NormalDistribution WidthFlowApertures { get { - return widthOfFlowApertures; + return widthFlowApertures; } set { - widthOfFlowApertures.Mean = value.Mean; - widthOfFlowApertures.StandardDeviation = value.StandardDeviation; + widthFlowApertures.Mean = value.Mean; + widthFlowApertures.StandardDeviation = value.StandardDeviation; } }