Index: Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Data/StabilityPointStructure.cs
===================================================================
diff -u -r8e8f8c83c45656f65adaa8e47600379dc5ae8f61 -r7faf338152aa99f81c7169781c4971fe7b7bbfd3
--- Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Data/StabilityPointStructure.cs (.../StabilityPointStructure.cs) (revision 8e8f8c83c45656f65adaa8e47600379dc5ae8f61)
+++ Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Data/StabilityPointStructure.cs (.../StabilityPointStructure.cs) (revision 7faf338152aa99f81c7169781c4971fe7b7bbfd3)
@@ -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.