Index: Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Data/Input/WaveConditions/WaveConditionsCalculationInput.cs
===================================================================
diff -u -r069a138c1b625306224a0385e8a49165be0ef6d3 -r3b9088c00c08d2d55eeb857a6a21a4c43b90fd60
--- Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Data/Input/WaveConditions/WaveConditionsCalculationInput.cs (.../WaveConditionsCalculationInput.cs) (revision 069a138c1b625306224a0385e8a49165be0ef6d3)
+++ Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Data/Input/WaveConditions/WaveConditionsCalculationInput.cs (.../WaveConditionsCalculationInput.cs) (revision 3b9088c00c08d2d55eeb857a6a21a4c43b90fd60)
@@ -41,6 +41,7 @@
/// Creates a new instance of the class.
///
/// The id of the section to use during the calculation.
+ /// The normal of the section to use during the calculation.
/// The id of the hydraulic station to use during the calculation.
/// The norm to use during the calculation.
/// The foreland points to use during the calculation.
@@ -50,6 +51,7 @@
/// The b-value to use during the calculation.
/// As a part of the constructor, the is automatically converted into a reliability index.
protected WaveConditionsCalculationInput(int sectionId,
+ double sectionNormal,
long hydraulicBoundaryLocationId,
double norm,
IEnumerable forelandPoints,
@@ -65,7 +67,7 @@
this.waterLevel = waterLevel;
this.a = a;
this.b = b;
- section = new HydraRingSection(sectionId, double.NaN, double.NaN);
+ section = new HydraRingSection(sectionId, double.NaN, sectionNormal);
}
public override HydraRingFailureMechanismType FailureMechanismType