Index: Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Data/StabilityPointStructure.cs =================================================================== diff -u -rcd777bfd46c42a50f2398dbe39dfda37fc64e0a6 -rc2a078ee5e2bd7923da2ef612bbf6cb3cdb5f33b --- Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Data/StabilityPointStructure.cs (.../StabilityPointStructure.cs) (revision cd777bfd46c42a50f2398dbe39dfda37fc64e0a6) +++ Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Data/StabilityPointStructure.cs (.../StabilityPointStructure.cs) (revision c2a078ee5e2bd7923da2ef612bbf6cb3cdb5f33b) @@ -53,10 +53,10 @@ /// The coefficient of variation of the critical overtopping discharge of the stability point structure. /// The mean of the flow width of the stability point structure at the bottom protection. /// The standard deviation of the flow width of the stability point structure at the bottom protection. - /// The mean of the constructive strength of the linear load model of the stability point structure. - /// The coefficient of variation of the constructive strength of the linear load model of the stability point structure. - /// The mean of the constructive strength of the quadratic load model of the stability point structure. - /// The coefficient of variation of the constructive strength of the quadratic load model of the stability point structure. + /// The mean of the constructive strength of the linear load model of the stability point structure. + /// The coefficient of variation of the constructive strength of the linear load model of the stability point structure. + /// The mean of the constructive strength of the quadratic load model of the stability point structure. + /// The coefficient of variation of the constructive strength of the quadratic load model of the stability point structure. /// The mean of the bank width of the stability point structure. /// The standard deviation of the bank width of the stability point structure. /// The mean of the inside water level failure construction of the stability point structure. @@ -96,8 +96,8 @@ double thresholdHeightOpenWeirMean, double thresholdHeightOpenWeirStandardDeviation, double criticalOvertoppingDischargeMean, double criticalOvertoppingDischargeCoefficientOfVariation, double flowWidthAtBottomProtectionMean, double flowWidthAtBottomProtectionStandardDeviation, - double constructiveStrengthLinearModelMean, double constructiveStrengthLinearModelCoefficientOfVariation, - double constructiveStrengthQuadraticModelMean, double constructiveStrengthQuadraticModelCoefficientOfVariation, + double constructiveStrengthLinearLoadModelMean, double constructiveStrengthLinearLoadModelCoefficientOfVariation, + double constructiveStrengthQuadraticLoadModelMean, double constructiveStrengthQuadraticLoadModelCoefficientOfVariation, double bankWidthMean, double bankWidthStandardDeviation, double insideWaterLevelFailureConstructionMean, double insideWaterLevelFailureConstructionStandardDeviation, double evaluationLevel, @@ -152,15 +152,15 @@ Mean = (RoundedDouble) flowWidthAtBottomProtectionMean, StandardDeviation = (RoundedDouble) flowWidthAtBottomProtectionStandardDeviation }; - ConstructiveStrengthLinearModel = new VariationCoefficientLogNormalDistribution(2) + ConstructiveStrengthLinearLoadModel = new VariationCoefficientLogNormalDistribution(2) { - Mean = (RoundedDouble) constructiveStrengthLinearModelMean, - CoefficientOfVariation = (RoundedDouble) constructiveStrengthLinearModelCoefficientOfVariation + Mean = (RoundedDouble) constructiveStrengthLinearLoadModelMean, + CoefficientOfVariation = (RoundedDouble) constructiveStrengthLinearLoadModelCoefficientOfVariation }; - ConstructiveStrengthQuadraticModel = new VariationCoefficientLogNormalDistribution(2) + ConstructiveStrengthQuadraticLoadModel = new VariationCoefficientLogNormalDistribution(2) { - Mean = (RoundedDouble) constructiveStrengthQuadraticModelMean, - CoefficientOfVariation = (RoundedDouble) constructiveStrengthQuadraticModelCoefficientOfVariation + Mean = (RoundedDouble) constructiveStrengthQuadraticLoadModelMean, + CoefficientOfVariation = (RoundedDouble) constructiveStrengthQuadraticLoadModelCoefficientOfVariation }; BankWidth = new NormalDistribution(2) { @@ -258,12 +258,12 @@ /// /// Gets the constructive strength of the linear load model of the stability point structure. /// - public VariationCoefficientLogNormalDistribution ConstructiveStrengthLinearModel { get; private set; } + public VariationCoefficientLogNormalDistribution ConstructiveStrengthLinearLoadModel { get; private set; } /// /// Gets the constructive strength of the quadratic load model of the stability point structure. /// - public VariationCoefficientLogNormalDistribution ConstructiveStrengthQuadraticModel { get; private set; } + public VariationCoefficientLogNormalDistribution ConstructiveStrengthQuadraticLoadModel { get; private set; } /// /// Gets the bank width of the stability point structure.