Index: dam engine/trunk/src/Deltares.DamEngine.Data/Design/DesignScenario.cs =================================================================== diff -u -r404 -r406 --- dam engine/trunk/src/Deltares.DamEngine.Data/Design/DesignScenario.cs (.../DesignScenario.cs) (revision 404) +++ dam engine/trunk/src/Deltares.DamEngine.Data/Design/DesignScenario.cs (.../DesignScenario.cs) (revision 406) @@ -102,8 +102,7 @@ private Dictionary failureProbabilitiesPiping; private Dictionary redesignedSurfaceLines; private Dictionary resultMessages; - private Dictionary safetyFactorsFlowSlide; - + private string locationScenarioId; private double riverLevel; private double? riverLevelLow; @@ -171,7 +170,6 @@ pipingResults = new Dictionary(); mStabResults = new Dictionary(); safetyFactorsPiping = new Dictionary(); - safetyFactorsFlowSlide = new Dictionary(); resultMessages = new Dictionary(); failureProbabilitiesStability = new Dictionary(); failureProbabilitiesPiping = new Dictionary(); @@ -886,54 +884,6 @@ } /// - /// Get Safety Factor Piping - /// - /// - /// - /// - public double? GetSafetyFactorFlowSlide(SoilProfile1D soilProfile, string soilGeometry2DName) - { - Object objectAsKey = GetObjectAsKey(soilProfile, soilGeometry2DName); - return GetSafetyFactorFlowSlide(objectAsKey); - } - - /// - /// Get Safety Factor FlowSlide - /// - /// - /// - private double? GetSafetyFactorFlowSlide(Object objectAsKey) - { - if (objectAsKey != null) - { - return safetyFactorsFlowSlide.ContainsKey(objectAsKey) ? safetyFactorsFlowSlide[objectAsKey] : null; - } - return null; - } - - /// - /// Set Safety Factor FlowSlide - /// - /// - /// - private void SetSafetyFactorFlowSlide(Object objectAsKey, double? safetyFactor) - { - safetyFactorsFlowSlide[objectAsKey] = safetyFactor; - } - - /// - /// Set Safety Factor FlowSlide - /// - /// - /// - /// - public void SetSafetyFactorFlowSlide(SoilProfile1D soilProfile, string soilGeometry2DName, double? safetyFactor) - { - Object objectAsKey = GetObjectAsKey(soilProfile, soilGeometry2DName); - SetSafetyFactorFlowSlide(objectAsKey, safetyFactor); - } - - /// /// Get Result Message /// ///