Index: dam engine/trunk/src/Deltares.DamEngine.Data/Design/DesignScenario.cs
===================================================================
diff -u -r452 -r577
--- dam engine/trunk/src/Deltares.DamEngine.Data/Design/DesignScenario.cs (.../DesignScenario.cs) (revision 452)
+++ dam engine/trunk/src/Deltares.DamEngine.Data/Design/DesignScenario.cs (.../DesignScenario.cs) (revision 577)
@@ -930,32 +930,6 @@
}
///
- /// Return the safety factor for calculation type of most probable soil profile
- ///
- ///
- ///
- public double? GetMostProbableSafetyFactor(FailureMechanismSystemType? failureMechanismType)
- {
- SoilProfile1D soilProfile = Location.Segment.GetMostProbableProfile(failureMechanismType);
- string soilGeometry2DName = Location.Segment.GetMostProbableGeometry2DName(failureMechanismType);
- switch (failureMechanismType)
- {
- case FailureMechanismSystemType.Piping:
- return GetSafetyFactorPiping(soilProfile, soilGeometry2DName);
- case FailureMechanismSystemType.StabilityInside:
- case FailureMechanismSystemType.StabilityOutside:
- MStabResults? mstabResults = GetMStabResults(soilProfile, soilGeometry2DName);
- double? safetyFactor = null;
- if (mstabResults != null)
- {
- safetyFactor = mstabResults.Value.zone1.safetyFactor;
- }
- return safetyFactor;
- }
- return null;
- }
-
- ///
/// Return probability stability
///
///