Index: Riskeer/GrassCoverErosionOutwards/src/Riskeer.GrassCoverErosionOutwards.Service/GrassCoverErosionOutwardsWaveConditionsCalculationService.cs =================================================================== diff -u -r001129417fc6986284e5ea075d39983e70d250f6 -rd684ded3287e757d166f51600a5e25b6f78c8464 --- Riskeer/GrassCoverErosionOutwards/src/Riskeer.GrassCoverErosionOutwards.Service/GrassCoverErosionOutwardsWaveConditionsCalculationService.cs (.../GrassCoverErosionOutwardsWaveConditionsCalculationService.cs) (revision 001129417fc6986284e5ea075d39983e70d250f6) +++ Riskeer/GrassCoverErosionOutwards/src/Riskeer.GrassCoverErosionOutwards.Service/GrassCoverErosionOutwardsWaveConditionsCalculationService.cs (.../GrassCoverErosionOutwardsWaveConditionsCalculationService.cs) (revision d684ded3287e757d166f51600a5e25b6f78c8464) @@ -54,7 +54,7 @@ /// The that holds all the information required to perform the calculation. /// The grass cover erosion outwards failure mechanism, which contains general parameters that apply to all /// instances. - /// The that holds information about the norm used in the calculation. + /// The that holds information about the target probability used in the calculation. /// Thrown when , /// or is null. /// Thrown when: @@ -237,9 +237,9 @@ GrassCoverErosionOutwardsFailureMechanism failureMechanism, HydraulicBoundaryDatabase hydraulicBoundaryDatabase, RoundedDouble assessmentLevel, - double norm) + double targetProbability) { - return Calculate(calculation, hydraulicBoundaryDatabase, norm, assessmentLevel, + return Calculate(calculation, hydraulicBoundaryDatabase, targetProbability, assessmentLevel, failureMechanism.GeneralInput.GeneralWaveRunUpWaveConditionsInput, Resources.GrassCoverErosionOutwardsWaveConditions_WaveRunUp_DisplayName); } @@ -248,9 +248,9 @@ GrassCoverErosionOutwardsFailureMechanism failureMechanism, HydraulicBoundaryDatabase hydraulicBoundaryDatabase, RoundedDouble assessmentLevel, - double norm) + double targetProbability) { - return Calculate(calculation, hydraulicBoundaryDatabase, norm, assessmentLevel, + return Calculate(calculation, hydraulicBoundaryDatabase, targetProbability, assessmentLevel, failureMechanism.GeneralInput.GeneralWaveImpactWaveConditionsInput, Resources.GrassCoverErosionOutwardsWaveConditions_WaveImpact_DisplayName); } @@ -259,16 +259,16 @@ GrassCoverErosionOutwardsFailureMechanism failureMechanism, HydraulicBoundaryDatabase hydraulicBoundaryDatabase, RoundedDouble assessmentLevel, - double norm) + double targetProbability) { - return Calculate(calculation, hydraulicBoundaryDatabase, norm, assessmentLevel, + return Calculate(calculation, hydraulicBoundaryDatabase, targetProbability, assessmentLevel, failureMechanism.GeneralInput.GeneralTailorMadeWaveImpactWaveConditionsInput, Resources.GrassCoverErosionOutwardsWaveConditions_TailorMadeWaveImpact_DisplayName); } private IEnumerable Calculate(GrassCoverErosionOutwardsWaveConditionsCalculation calculation, HydraulicBoundaryDatabase hydraulicBoundaryDatabase, - double norm, + double targetProbability, RoundedDouble assessmentLevel, GeneralWaveConditionsInput generalInput, string calculationType) @@ -277,7 +277,7 @@ IEnumerable outputs = CalculateWaveConditions(calculation.InputParameters, assessmentLevel, - generalInput.A, generalInput.B, generalInput.C, norm, + generalInput.A, generalInput.B, generalInput.C, targetProbability, hydraulicBoundaryDatabase); log.InfoFormat(RevetmentServiceResources.WaveConditionsCalculationService_Calculate_calculationType_0_ended, calculationType); return outputs;