Index: Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.Data/AssemblyCategoriesInput.cs
===================================================================
diff -u -raf0a972088a0290788b3517a3ae61dd5c1a9797d -ra50d0eecc7a0e966233e3c25c4e4fb3839dbffb1
--- Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.Data/AssemblyCategoriesInput.cs (.../AssemblyCategoriesInput.cs) (revision af0a972088a0290788b3517a3ae61dd5c1a9797d)
+++ Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.Data/AssemblyCategoriesInput.cs (.../AssemblyCategoriesInput.cs) (revision a50d0eecc7a0e966233e3c25c4e4fb3839dbffb1)
@@ -45,9 +45,24 @@
LowerLimitNorm = lowerLimitNorm;
}
+ ///
+ /// Gets the 'N' parameter used to factor in the 'length effect'.
+ ///
public double N { get; }
+
+ ///
+ /// Gets the contribution of a failure mechanism.
+ ///
public double FailureMechanismContribution { get; }
+
+ ///
+ /// Gets the signaling norm of the assessment section.
+ ///
public double SignalingNorm { get; }
+
+ ///
+ /// Gets the lower limit norm of the assessment section.
+ ///
public double LowerLimitNorm { get; }
}
}
\ No newline at end of file
Index: Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.KernelWrapper/Creators/FailureMechanismSectionAssemblyCalculatorInputCreator.cs
===================================================================
diff -u -ra50516d5196038c60d02e441ea8eb14a3c3e2314 -ra50d0eecc7a0e966233e3c25c4e4fb3839dbffb1
--- Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.KernelWrapper/Creators/FailureMechanismSectionAssemblyCalculatorInputCreator.cs (.../FailureMechanismSectionAssemblyCalculatorInputCreator.cs) (revision a50516d5196038c60d02e441ea8eb14a3c3e2314)
+++ Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.KernelWrapper/Creators/FailureMechanismSectionAssemblyCalculatorInputCreator.cs (.../FailureMechanismSectionAssemblyCalculatorInputCreator.cs) (revision a50d0eecc7a0e966233e3c25c4e4fb3839dbffb1)
@@ -360,8 +360,8 @@
FailureMechanismSectionAssemblyCategoryGroup category)
{
EFmSectionCategory result = ConvertFailureMechanismSectionAssemblyCategoryGroup(category);
- return result == EFmSectionCategory.Gr
- ? new Tuple(EAssessmentResultTypeT3.Gr, null)
+ return result == EFmSectionCategory.Gr
+ ? new Tuple(EAssessmentResultTypeT3.Gr, null)
: new Tuple(EAssessmentResultTypeT3.ResultSpecified, result);
}