Index: Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Data/StabilityPointStructure.cs
===================================================================
diff -u -rebdbf01f6ab35a28b3a306145796ce532920af62 -rf7a0b62177d09fb02de673c29f7d153775c5608d
--- Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Data/StabilityPointStructure.cs (.../StabilityPointStructure.cs) (revision ebdbf01f6ab35a28b3a306145796ce532920af62)
+++ Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Data/StabilityPointStructure.cs (.../StabilityPointStructure.cs) (revision f7a0b62177d09fb02de673c29f7d153775c5608d)
@@ -121,10 +121,10 @@
};
LevellingCount = constructionProperties.LevellingCount;
ProbabilityCollisionSecondaryStructure = constructionProperties.ProbabilityCollisionSecondaryStructure;
- FlowVelocityStructureClosable = new NormalDistribution(2)
+ FlowVelocityStructureClosable = new VariationCoefficientNormalDistribution(2)
{
Mean = constructionProperties.FlowVelocityStructureClosable.Mean,
- StandardDeviation = constructionProperties.FlowVelocityStructureClosable.StandardDeviation
+ CoefficientOfVariation = constructionProperties.FlowVelocityStructureClosable.CoefficientOfVariation
};
StabilityLinearLoadModel = new VariationCoefficientLogNormalDistribution(2)
{
@@ -268,7 +268,7 @@
/// Gets the maximum flow velocity at which the structure is closable.
/// [m/s]
///
- public NormalDistribution FlowVelocityStructureClosable { get; private set; }
+ public VariationCoefficientNormalDistribution FlowVelocityStructureClosable { get; private set; }
///
/// Gets the stability properties of the linear load model of the stability point structure.
@@ -318,7 +318,7 @@
FailureCollisionEnergy = new VariationCoefficientLogNormalDistribution(2);
ShipMass = new VariationCoefficientNormalDistribution(2);
ShipVelocity = new VariationCoefficientNormalDistribution(2);
- FlowVelocityStructureClosable = new NormalDistribution(2);
+ FlowVelocityStructureClosable = new VariationCoefficientNormalDistribution(2);
StabilityLinearLoadModel = new VariationCoefficientLogNormalDistribution(2);
StabilityQuadraticLoadModel = new VariationCoefficientLogNormalDistribution(2);
AreaFlowApertures = new LogNormalDistribution(2);
@@ -448,7 +448,7 @@
/// Gets the maximum flow velocity at which the structure is closable.
/// [m/s]
///
- public NormalDistribution FlowVelocityStructureClosable { get; private set; }
+ public VariationCoefficientNormalDistribution FlowVelocityStructureClosable { get; private set; }
///
/// Gets the stability properties of the linear load model of the stability point structure.