Index: Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Data/HeightStructure.cs =================================================================== diff -u -r57eb47b74e13d3893ded8879b38f18c1e0ae58a1 -r0d12e759b6e46290d83d04a6a5760fe467b339ab --- Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Data/HeightStructure.cs (.../HeightStructure.cs) (revision 57eb47b74e13d3893ded8879b38f18c1e0ae58a1) +++ Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Data/HeightStructure.cs (.../HeightStructure.cs) (revision 0d12e759b6e46290d83d04a6a5760fe467b339ab) @@ -45,8 +45,8 @@ /// The standard deviation of the flow width of the height structure at the bottom protection. /// The mean critical overtopping discharge of the height structure. /// The standard deviation of critical overtopping discharge of the height structure. - /// The mean flow apertures width of the height structure. - /// The standard deviation of flow apertures width of the height structure. + /// The mean flow apertures width of the height structure. + /// The standard deviation of flow apertures width of the height structure. /// The failure probability of the height structure, given erosion. /// The mean storage area of the height structure. /// The standard deviation of storage area of the height structure. @@ -60,7 +60,7 @@ double levelCrestStructureMean, double levelCrestStructureStandardDeviation, double flowWidthAtBottomProtectionMean, double flowWidthAtBottomProtectionStandardDeviation, double criticalOvertoppingDischargeMean, double criticalOvertoppingDischargeStandardDeviation, - double widthOfFlowAperturesMean, double widthOfFlowAperturesStandardDeviation, + double widthFlowAperturesMean, double widthFlowAperturesStandardDeviation, double failureProbabilityStructureWithErosion, double storageStructureAreaMean, double storageStructureAreaStandardDeviation, double allowedLevelIncreaseStorageMean, double allowedLevelIncreaseStorageStandardDeviation) @@ -82,10 +82,10 @@ Mean = new RoundedDouble(2, criticalOvertoppingDischargeMean), StandardDeviation = new RoundedDouble(2, criticalOvertoppingDischargeStandardDeviation) }; - WidthOfFlowApertures = new NormalDistribution(2) + WidthFlowApertures = new NormalDistribution(2) { - Mean = new RoundedDouble(2, widthOfFlowAperturesMean), - StandardDeviation = new RoundedDouble(2, widthOfFlowAperturesStandardDeviation) + Mean = new RoundedDouble(2, widthFlowAperturesMean), + StandardDeviation = new RoundedDouble(2, widthFlowAperturesStandardDeviation) }; FailureProbabilityStructureWithErosion = failureProbabilityStructureWithErosion; StorageStructureArea = new LogNormalDistribution(2) @@ -123,7 +123,7 @@ /// /// Gets the flow apertures width of the height structure. /// - public NormalDistribution WidthOfFlowApertures { get; private set; } + public NormalDistribution WidthFlowApertures { get; private set; } /// /// Gets the failure probability of the height structure, given erosion.