Index: Ringtoets/ClosingStructures/src/Ringtoets.ClosingStructures.Data/ClosingStructure.cs
===================================================================
diff -u -r98d39240f938a4ce3d41972bae92f10207e1cc82 -r8e8f8c83c45656f65adaa8e47600379dc5ae8f61
--- Ringtoets/ClosingStructures/src/Ringtoets.ClosingStructures.Data/ClosingStructure.cs (.../ClosingStructure.cs) (revision 98d39240f938a4ce3d41972bae92f10207e1cc82)
+++ Ringtoets/ClosingStructures/src/Ringtoets.ClosingStructures.Data/ClosingStructure.cs (.../ClosingStructure.cs) (revision 8e8f8c83c45656f65adaa8e47600379dc5ae8f61)
@@ -50,10 +50,10 @@
Mean = constructionProperties.AllowedLevelIncreaseStorage.Mean,
StandardDeviation = constructionProperties.AllowedLevelIncreaseStorage.StandardDeviation
};
- WidthFlowApertures = new VariationCoefficientNormalDistribution(2)
+ WidthFlowApertures = new NormalDistribution(2)
{
Mean = constructionProperties.WidthFlowApertures.Mean,
- CoefficientOfVariation = constructionProperties.WidthFlowApertures.CoefficientOfVariation
+ StandardDeviation = constructionProperties.WidthFlowApertures.StandardDeviation
};
LevelCrestStructureNotClosing = new NormalDistribution(2)
{
@@ -108,7 +108,7 @@
/// Gets the width of the flow apertures of the closing structure.
/// [m]
///
- public VariationCoefficientNormalDistribution WidthFlowApertures { get; private set; }
+ public NormalDistribution WidthFlowApertures { get; private set; }
///
/// Gets the crest level of the opened closing structure.
@@ -189,7 +189,7 @@
{
StorageStructureArea = new VariationCoefficientLogNormalDistribution(2);
AllowedLevelIncreaseStorage = new LogNormalDistribution(2);
- WidthFlowApertures = new VariationCoefficientNormalDistribution(2);
+ WidthFlowApertures = new NormalDistribution(2);
LevelCrestStructureNotClosing = new NormalDistribution(2);
InsideWaterLevel = new NormalDistribution(2);
ThresholdHeightOpenWeir = new NormalDistribution(2);
@@ -214,7 +214,7 @@
/// Gets the width of the flow apertures of the closing structure.
/// [m]
///
- public VariationCoefficientNormalDistribution WidthFlowApertures { get; private set; }
+ public NormalDistribution WidthFlowApertures { get; private set; }
///
/// Gets the crest level of the opened closing structure.