Index: Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Data/StabilityPointStructure.cs =================================================================== diff -u -r8a877cfbf6e7570c646ea24ad5ebc98d3b3c0e47 -r7b02f05192ce7e2394f0ed0d727a71d2abdf8a41 --- Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Data/StabilityPointStructure.cs (.../StabilityPointStructure.cs) (revision 8a877cfbf6e7570c646ea24ad5ebc98d3b3c0e47) +++ Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Data/StabilityPointStructure.cs (.../StabilityPointStructure.cs) (revision 7b02f05192ce7e2394f0ed0d727a71d2abdf8a41) @@ -72,10 +72,10 @@ /// The coefficient of variation of the mass of the ship. /// The mean velocity of the ship. /// The coefficient of variation of the velocity of the ship. - /// Number of levellings per year. - /// The chance per levelling at a collision with the second retaining structure. + /// Number of levellings per year. + /// The chance per levelling at a collision with the second retaining structure. /// The mean maximum flow velocity at which the structure is closable. - /// The standard deviation of the maximum flow velocity at which the structure is closable. + /// The standard deviation of the maximum flow velocity at which the structure is closable. /// The mean stability properties of the linear model of the stability point structure. /// The coefficient of variation of the stability properties of the linear model of the stability point structure. /// The mean stability properties of the quadratic model of the stability point structure. @@ -107,9 +107,9 @@ double failureCollisionEnergyMean, double failureCollisionEnergyCoefficientOfVariation, double shipMassMean, double shipMassCoefficientOfVariation, double shipVelocityMean, double shipVelocityCoefficientOfVariation, - int levellingsPerYear, - double collisionChanceSecondRetainingStructurePerLevelling, - double flowVelocityStructureClosableMean, double flowVelocityStructureClosableStandarDeviation, + int levellingCount, + double probabilityCollisionSecondaryStructure, + double flowVelocityStructureClosableMean, double flowVelocityStructureClosableStandardDeviation, double stabilityLinearModelMean, double stabilityLinearModelCoefficientOfVariation, double stabilityQuadraticModelMean, double stabilityQuadraticModelCoefficientOfVariation, double areaFlowAperturesMean, double areaFlowAperturesStandardDeviation, @@ -195,12 +195,12 @@ Mean = (RoundedDouble) shipVelocityMean, CoefficientOfVariation = (RoundedDouble) shipVelocityCoefficientOfVariation }; - LevellingsPerYear = levellingsPerYear; - CollisionChanceSecondRetainingStructurePerLevelling = new RoundedDouble(2, collisionChanceSecondRetainingStructurePerLevelling); + LevellingCount = levellingCount; + ProbabilityCollisionSecondaryStructure = new RoundedDouble(2, probabilityCollisionSecondaryStructure); FlowVelocityStructureClosable = new NormalDistribution(2) { Mean = (RoundedDouble) flowVelocityStructureClosableMean, - StandardDeviation = (RoundedDouble) flowVelocityStructureClosableStandarDeviation + StandardDeviation = (RoundedDouble) flowVelocityStructureClosableStandardDeviation }; StabilityLinearModel = new VariationCoefficientLogNormalDistribution(2) { @@ -311,14 +311,14 @@ public VariationCoefficientNormalDistribution ShipVelocity { get; private set; } /// - /// Gets the number of levellings per year. + /// Gets the number of levelling count. /// - public int LevellingsPerYear { get; private set; } + public int LevellingCount { get; private set; } /// - /// Gets the chance per levelling at a collision with the second retaining structure. + /// Gets the probability of a secondary collision on the structure. /// - public RoundedDouble CollisionChanceSecondRetainingStructurePerLevelling { get; private set; } + public RoundedDouble ProbabilityCollisionSecondaryStructure { get; private set; } /// /// Gets the maximum flow velocity at which the structure is closable.