Index: Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Data/HeightStructure.cs
===================================================================
diff -u -r7d6e4c28a40fb056c182d0691dda2b2e88aeebfd -rebdbf01f6ab35a28b3a306145796ce532920af62
--- Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Data/HeightStructure.cs (.../HeightStructure.cs) (revision 7d6e4c28a40fb056c182d0691dda2b2e88aeebfd)
+++ Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Data/HeightStructure.cs (.../HeightStructure.cs) (revision ebdbf01f6ab35a28b3a306145796ce532920af62)
@@ -55,10 +55,10 @@
Mean = constructionProperties.CriticalOvertoppingDischarge.Mean,
CoefficientOfVariation = constructionProperties.CriticalOvertoppingDischarge.CoefficientOfVariation
};
- WidthFlowApertures = new VariationCoefficientNormalDistribution(2)
+ WidthFlowApertures = new NormalDistribution(2)
{
Mean = constructionProperties.WidthFlowApertures.Mean,
- CoefficientOfVariation = constructionProperties.WidthFlowApertures.CoefficientOfVariation
+ StandardDeviation = constructionProperties.WidthFlowApertures.StandardDeviation
};
FailureProbabilityStructureWithErosion = constructionProperties.FailureProbabilityStructureWithErosion;
StorageStructureArea = new VariationCoefficientLogNormalDistribution(2)
@@ -95,7 +95,7 @@
/// Gets the flow apertures width of the height structure.
/// [m]
///
- public VariationCoefficientNormalDistribution WidthFlowApertures { get; private set; }
+ public NormalDistribution WidthFlowApertures { get; private set; }
///
/// Gets the failure probability of the height structure, given erosion.
@@ -128,7 +128,7 @@
LevelCrestStructure = new NormalDistribution(2);
FlowWidthAtBottomProtection = new LogNormalDistribution(2);
CriticalOvertoppingDischarge = new VariationCoefficientLogNormalDistribution(2);
- WidthFlowApertures = new VariationCoefficientNormalDistribution(2);
+ WidthFlowApertures = new NormalDistribution(2);
StorageStructureArea = new VariationCoefficientLogNormalDistribution(2);
AllowedLevelIncreaseStorage = new LogNormalDistribution(2);
}
@@ -155,7 +155,7 @@
/// Gets the flow apertures width of the height structure.
/// [m]
///
- public VariationCoefficientNormalDistribution WidthFlowApertures { get; private set; }
+ public NormalDistribution WidthFlowApertures { get; private set; }
///
/// Gets or sets the failure probability of the height structure, given erosion.