Index: Riskeer/StabilityPointStructures/src/Riskeer.StabilityPointStructures.Data/GeneralStabilityPointStructuresInput.cs =================================================================== diff -u -r68ec97043e735b40f5f6fa555ad53ef7cc43527d -r65c7fd2a9124369cf78f3cb46a46a10a0f41368e --- Riskeer/StabilityPointStructures/src/Riskeer.StabilityPointStructures.Data/GeneralStabilityPointStructuresInput.cs (.../GeneralStabilityPointStructuresInput.cs) (revision 68ec97043e735b40f5f6fa555ad53ef7cc43527d) +++ Riskeer/StabilityPointStructures/src/Riskeer.StabilityPointStructures.Data/GeneralStabilityPointStructuresInput.cs (.../GeneralStabilityPointStructuresInput.cs) (revision 65c7fd2a9124369cf78f3cb46a46a10a0f41368e) @@ -111,6 +111,11 @@ } } + /// + /// Gets whether the length effect should be applied in the section. + /// + public bool ApplyLengthEffectInSection => false; + #endregion #region Model factors Index: Riskeer/StabilityPointStructures/src/Riskeer.StabilityPointStructures.Forms/PropertyClasses/StabilityPointStructuresFailurePathProperties.cs =================================================================== diff -u -r26f427a7724ebe6e50c0d83fd87156df30f17e9c -r65c7fd2a9124369cf78f3cb46a46a10a0f41368e --- Riskeer/StabilityPointStructures/src/Riskeer.StabilityPointStructures.Forms/PropertyClasses/StabilityPointStructuresFailurePathProperties.cs (.../StabilityPointStructuresFailurePathProperties.cs) (revision 26f427a7724ebe6e50c0d83fd87156df30f17e9c) +++ Riskeer/StabilityPointStructures/src/Riskeer.StabilityPointStructures.Forms/PropertyClasses/StabilityPointStructuresFailurePathProperties.cs (.../StabilityPointStructuresFailurePathProperties.cs) (revision 65c7fd2a9124369cf78f3cb46a46a10a0f41368e) @@ -94,7 +94,7 @@ { get { - return false; + return data.GeneralInput.ApplyLengthEffectInSection; } } Index: Riskeer/StabilityPointStructures/test/Riskeer.StabilityPointStructures.Data.Test/GeneralStabilityPointStructuresInputTest.cs =================================================================== diff -u -r68ec97043e735b40f5f6fa555ad53ef7cc43527d -r65c7fd2a9124369cf78f3cb46a46a10a0f41368e --- Riskeer/StabilityPointStructures/test/Riskeer.StabilityPointStructures.Data.Test/GeneralStabilityPointStructuresInputTest.cs (.../GeneralStabilityPointStructuresInputTest.cs) (revision 68ec97043e735b40f5f6fa555ad53ef7cc43527d) +++ Riskeer/StabilityPointStructures/test/Riskeer.StabilityPointStructures.Data.Test/GeneralStabilityPointStructuresInputTest.cs (.../GeneralStabilityPointStructuresInputTest.cs) (revision 65c7fd2a9124369cf78f3cb46a46a10a0f41368e) @@ -66,6 +66,8 @@ Assert.AreEqual(2, inputParameters.N.NumberOfDecimalPlaces); Assert.AreEqual(3.0, inputParameters.N, inputParameters.N.GetAccuracy()); + Assert.IsFalse(inputParameters.ApplyLengthEffectInSection); + Assert.AreEqual(2, inputParameters.GravitationalAcceleration.NumberOfDecimalPlaces); Assert.AreEqual(9.81, inputParameters.GravitationalAcceleration, inputParameters.GravitationalAcceleration.GetAccuracy());