Index: Ringtoets/Revetment/src/Ringtoets.Revetment.Data/WaveConditionsInputExtensions.cs =================================================================== diff -u -r8b7420d9b5ced2565ae07009fc8b5af8e1b8d5e7 -r8603f868116222b363f719ecea30b99685a8ec76 --- Ringtoets/Revetment/src/Ringtoets.Revetment.Data/WaveConditionsInputExtensions.cs (.../WaveConditionsInputExtensions.cs) (revision 8b7420d9b5ced2565ae07009fc8b5af8e1b8d5e7) +++ Ringtoets/Revetment/src/Ringtoets.Revetment.Data/WaveConditionsInputExtensions.cs (.../WaveConditionsInputExtensions.cs) (revision 8603f868116222b363f719ecea30b99685a8ec76) @@ -34,11 +34,11 @@ /// Gets the water levels to perform a wave conditions calculation for. /// /// The wave conditions input. - /// The assessment level to use. + /// The upper boundary design water level to use. /// An containing water levels. /// Thrown when is null. public static IEnumerable GetWaterLevels(this WaveConditionsInput waveConditionsInput, - RoundedDouble assessmentLevel) + RoundedDouble upperBoundaryDesignWaterLevel) { if (waveConditionsInput == null) { @@ -47,7 +47,7 @@ var waterLevels = new List(); - var upperBoundary = new RoundedDouble(2, Math.Min(waveConditionsInput.UpperBoundaryDesignWaterLevel, + var upperBoundary = new RoundedDouble(2, Math.Min(upperBoundaryDesignWaterLevel, Math.Min(waveConditionsInput.UpperBoundaryRevetment, !double.IsNaN(waveConditionsInput.UpperBoundaryWaterLevels) ? waveConditionsInput.UpperBoundaryWaterLevels