Index: dam engine/trunk/src/Deltares.DamEngine.Calculators/Stability/StabilityCalculator.cs
===================================================================
diff -u -r599 -r670
--- dam engine/trunk/src/Deltares.DamEngine.Calculators/Stability/StabilityCalculator.cs (.../StabilityCalculator.cs) (revision 599)
+++ dam engine/trunk/src/Deltares.DamEngine.Calculators/Stability/StabilityCalculator.cs (.../StabilityCalculator.cs) (revision 670)
@@ -89,8 +89,7 @@
public static string ModelSubDirectory = "";
private MStabProject dotNetMstabProjectResults;
- public PhreaticAdaptionType? NWOPhreaticAdaption { get; set; }
-
+
///
/// Create PLLines with selected model
///
@@ -179,7 +178,6 @@
plLineCreator.PlLineOffsetFactorBelowShoulderCrest = location.PlLineOffsetFactorBelowShoulderCrest;
plLineCreator.UsePlLineOffsetBelowDikeCrestMiddle = location.UsePlLineOffsetBelowDikeCrestMiddle;
plLineCreator.UsePlLineOffsetFactorBelowShoulderCrest = location.UsePlLineOffsetFactorBelowShoulderCrest;
- plLineCreator.NWOPhreaticAdaption = NWOPhreaticAdaption;
plLineCreator.XSoilGeometry2DOrigin = location.XSoilGeometry2DOrigin;
plLines = plLineCreator.CreateAllPLLines(location);
Index: dam engine/trunk/src/Deltares.DamEngine.Calculators/General/DamProjectCalculatorCsvExportDataBuilder.cs
===================================================================
diff -u -r599 -r670
--- dam engine/trunk/src/Deltares.DamEngine.Calculators/General/DamProjectCalculatorCsvExportDataBuilder.cs (.../DamProjectCalculatorCsvExportDataBuilder.cs) (revision 599)
+++ dam engine/trunk/src/Deltares.DamEngine.Calculators/General/DamProjectCalculatorCsvExportDataBuilder.cs (.../DamProjectCalculatorCsvExportDataBuilder.cs) (revision 670)
@@ -46,7 +46,6 @@
/// The for which to create .
/// The for which to create .
/// The for which to create .
- /// The for which to create
public DamProjectCalculatorCsvExportDataBuilder(Dike dike, DesignScenario scenario, DamFailureMechanismeCalculationSpecification damFailureMechanismCalculationSpecification, AnalysisType analysisType)
{
Dike = dike;
@@ -61,34 +60,15 @@
/// and the message queue is cleared.
///
/// The for which to create this .
- /// The to set for the to be created . Default is the 0th .
/// The newly constructed with messages appended using .
- public DesignResult Build(SoilGeometryProbability soilGeometryProbability, StabilityKernelType kernelType = (StabilityKernelType) 0)
+ public DesignResult Build(SoilGeometryProbability soilGeometryProbability)
{
- return Build(soilGeometryProbability, kernelType, 0);
- }
-
- ///
- /// Returns a new instance of . Messages that were added using are added to the
- /// and the message queue is cleared.
- ///
- /// The for which to create this .
- /// An optional index to associate the with some other object of a list.
- /// The newly constructed with messages appended using .
- public DesignResult Build(SoilGeometryProbability soilGeometryProbability, int index)
- {
- return Build(soilGeometryProbability, 0, index);
- }
-
- private DesignResult Build(SoilGeometryProbability soilGeometryProbability, StabilityKernelType kernelType, int index)
- {
var data = new DesignResult(
FailureMechanismSystemType,
Scenario,
soilGeometryProbability.SoilProfile1D,
soilGeometryProbability.StiFileName,
- AnalysisType,
- index);
+ AnalysisType);
Message.Clear();
return data;
Index: dam engine/trunk/src/Deltares.DamEngine.Data/Design/DesignScenario.cs
===================================================================
diff -u -r599 -r670
--- dam engine/trunk/src/Deltares.DamEngine.Data/Design/DesignScenario.cs (.../DesignScenario.cs) (revision 599)
+++ dam engine/trunk/src/Deltares.DamEngine.Data/Design/DesignScenario.cs (.../DesignScenario.cs) (revision 670)
@@ -122,8 +122,6 @@
set { calculationResult = value; }
}
- public IList NwoResults { get; set; }
-
public List CalculationResults
{
get { return calculationResults; }
@@ -167,7 +165,6 @@
safetyFactorsPiping = new Dictionary