Index: Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Data/HeightStructuresInput.cs =================================================================== diff -u -r2dc3f17db9958ee4146f90efd7d38eb335ef822f -r873b8bf10a9c767214fa5a3a1e6cf340e060657f --- Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Data/HeightStructuresInput.cs (.../HeightStructuresInput.cs) (revision 2dc3f17db9958ee4146f90efd7d38eb335ef822f) +++ Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Data/HeightStructuresInput.cs (.../HeightStructuresInput.cs) (revision 873b8bf10a9c767214fa5a3a1e6cf340e060657f) @@ -61,10 +61,11 @@ levelOfCrestOfStructure = new NormalDistribution(2) { + Mean = new RoundedDouble(2), StandardDeviation = new RoundedDouble(2, 0.05) }; - OrientationOfTheNormalOfTheStructure = new RoundedDouble(2); + orientationOfTheNormalOfTheStructure = new RoundedDouble(2); modelFactorOvertoppingSuperCriticalFlow = new NormalDistribution(2) { @@ -74,34 +75,42 @@ allowableIncreaseOfLevelForStorage = new LognormalDistribution(2) { + Mean = new RoundedDouble(2, double.NaN), StandardDeviation = new RoundedDouble(2, 0.1) }; storageStructureArea = new LognormalDistribution(2) { + Mean = new RoundedDouble(2, double.NaN), StandardDeviation = new RoundedDouble(2, 0.1) }; flowWidthAtBottomProtection = new LognormalDistribution(2) { + Mean = new RoundedDouble(2, double.NaN), StandardDeviation = new RoundedDouble(2, 0.05) }; criticalOvertoppingDischarge = new LognormalDistribution(2) { + Mean = new RoundedDouble(2, double.NaN), StandardDeviation = new RoundedDouble(2, 0.15) }; + failureProbabilityOfStructureGivenErosion = new RoundedDouble(2); + widthOfFlowApertures = new NormalDistribution(2) { + Mean = new RoundedDouble(2), StandardDeviation = new RoundedDouble(2, 0.05) }; deviationOfTheWaveDirection = new RoundedDouble(2); stormDuration = new LognormalDistribution(2) { - Mean = new RoundedDouble(2, 7.5), StandardDeviation = new RoundedDouble(2, 0.25) + Mean = new RoundedDouble(2, 7.5), + StandardDeviation = new RoundedDouble(2, 0.25) }; }