Index: Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Data/StabilityPointStructuresInput.cs
===================================================================
diff -u -r3ca074d78bf75ff67c19539c04be91196a0659b0 -r78822681793277150da4eac3ac214a9aa59a47dd
--- Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Data/StabilityPointStructuresInput.cs (.../StabilityPointStructuresInput.cs) (revision 3ca074d78bf75ff67c19539c04be91196a0659b0)
+++ Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Data/StabilityPointStructuresInput.cs (.../StabilityPointStructuresInput.cs) (revision 78822681793277150da4eac3ac214a9aa59a47dd)
@@ -330,6 +330,7 @@
/// Gets or sets the flow velocity structure closable.
/// [m/s]
///
+ /// Only sets the mean.
public VariationCoefficientNormalDistribution FlowVelocityStructureClosable
{
get
Index: Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.IO/Configurations/StabilityPointStructuresCalculationConfigurationImporter.cs
===================================================================
diff -u -rff6bb6b2bd6eb8bbd7c7c954dcde6fa6770dc493 -r78822681793277150da4eac3ac214a9aa59a47dd
--- Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.IO/Configurations/StabilityPointStructuresCalculationConfigurationImporter.cs (.../StabilityPointStructuresCalculationConfigurationImporter.cs) (revision ff6bb6b2bd6eb8bbd7c7c954dcde6fa6770dc493)
+++ Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.IO/Configurations/StabilityPointStructuresCalculationConfigurationImporter.cs (.../StabilityPointStructuresCalculationConfigurationImporter.cs) (revision 78822681793277150da4eac3ac214a9aa59a47dd)
@@ -109,6 +109,9 @@
&& TryReadFailureProbabilityStructureWithErosion(readCalculation, calculation)
&& TryReadInflowModelType(readCalculation, calculation)
&& TryReadLoadSchematizationType(readCalculation, calculation)
+ && TryReadLevellingCount(readCalculation, calculation)
+ && TryReadProbabilityCollisionSecondaryStructure(readCalculation, calculation)
+ && TryReadVerticalDistance(readCalculation, calculation)
&& readCalculation.WaveReduction.ValidateWaveReduction(calculation.InputParameters.ForeshoreProfile, calculation.Name, Log))
{
ReadFactorStormDurationOpenStructure(readCalculation, calculation);
@@ -186,6 +189,18 @@
calculation.InputParameters,
readCalculation.DrainCoefficient,
i => i.DrainCoefficient, (i, d) => i.DrainCoefficient = d)
+ && TryReadVariationCoefficientStochast(
+ StabilityPointStructuresConfigurationSchemaIdentifiers.FailureCollisionEnergyStochastName,
+ calculation.Name,
+ calculation.InputParameters,
+ readCalculation.FailureCollisionEnergy,
+ i => i.FailureCollisionEnergy, (i, d) => i.FailureCollisionEnergy = d)
+ && TryReadVariationCoefficientStochast(
+ StabilityPointStructuresConfigurationSchemaIdentifiers.FlowVelocityStructureClosableStochastName,
+ calculation.Name,
+ calculation.InputParameters,
+ readCalculation.FlowVelocityStructureClosable,
+ i => i.FlowVelocityStructureClosable, (i, d) => i.FlowVelocityStructureClosable = d)
&& TryReadStandardDeviationStochast(
ConfigurationSchemaIdentifiers.FlowWidthAtBottomProtectionStochastName,
calculation.Name,
@@ -199,11 +214,23 @@
readCalculation.InsideWaterLevel,
i => i.InsideWaterLevel, (i, d) => i.InsideWaterLevel = d)
&& TryReadStandardDeviationStochast(
+ StabilityPointStructuresConfigurationSchemaIdentifiers.InsideWaterLevelFailureConstructionStochastName,
+ calculation.Name,
+ calculation.InputParameters,
+ readCalculation.InsideWaterLevelFailureConstruction,
+ i => i.InsideWaterLevelFailureConstruction, (i, d) => i.InsideWaterLevelFailureConstruction = d)
+ && TryReadStandardDeviationStochast(
ConfigurationSchemaIdentifiers.ModelFactorSuperCriticalFlowStochastName,
calculation.Name,
calculation.InputParameters,
readCalculation.ModelFactorSuperCriticalFlow,
i => i.ModelFactorSuperCriticalFlow, (i, d) => i.ModelFactorSuperCriticalFlow = d)
+ && TryReadStandardDeviationStochast(
+ StabilityPointStructuresConfigurationSchemaIdentifiers.LevelCrestStructureStochastName,
+ calculation.Name,
+ calculation.InputParameters,
+ readCalculation.LevelCrestStructure,
+ i => i.LevelCrestStructure, (i, d) => i.LevelCrestStructure = d)
&& TryReadVariationCoefficientStochast(
StabilityPointStructuresConfigurationSchemaIdentifiers.ConstructiveStrengthLinearLoadModelStochastName,
calculation.Name,
@@ -217,6 +244,30 @@
readCalculation.ConstructiveStrengthQuadraticLoadModel,
i => i.ConstructiveStrengthQuadraticLoadModel, (i, d) => i.ConstructiveStrengthQuadraticLoadModel = d)
&& TryReadVariationCoefficientStochast(
+ StabilityPointStructuresConfigurationSchemaIdentifiers.ShipMassStochastName,
+ calculation.Name,
+ calculation.InputParameters,
+ readCalculation.ShipMass,
+ i => i.ShipMass, (i, d) => i.ShipMass = d)
+ && TryReadVariationCoefficientStochast(
+ StabilityPointStructuresConfigurationSchemaIdentifiers.ShipVelocityStochastName,
+ calculation.Name,
+ calculation.InputParameters,
+ readCalculation.ShipVelocity,
+ i => i.ShipVelocity, (i, d) => i.ShipVelocity = d)
+ && TryReadVariationCoefficientStochast(
+ StabilityPointStructuresConfigurationSchemaIdentifiers.StabilityLinearLoadModelStochastName,
+ calculation.Name,
+ calculation.InputParameters,
+ readCalculation.StabilityLinearLoadModel,
+ i => i.StabilityLinearLoadModel, (i, d) => i.StabilityLinearLoadModel = d)
+ && TryReadVariationCoefficientStochast(
+ StabilityPointStructuresConfigurationSchemaIdentifiers.StabilityQuadraticLoadModelStochastName,
+ calculation.Name,
+ calculation.InputParameters,
+ readCalculation.StabilityQuadraticLoadModel,
+ i => i.StabilityQuadraticLoadModel, (i, d) => i.StabilityQuadraticLoadModel = d)
+ && TryReadVariationCoefficientStochast(
ConfigurationSchemaIdentifiers.StorageStructureAreaStochastName,
calculation.Name,
calculation.InputParameters,
@@ -250,6 +301,13 @@
configuration.Name);
return false;
}
+ if (configuration.FlowVelocityStructureClosable?.StandardDeviation != null
+ || configuration.FlowVelocityStructureClosable?.VariationCoefficient != null)
+ {
+ Log.LogCalculationConversionError(Resources.CalculationConfigurationImporter_ValidateStochasts_Cannot_define_spread_for_FlowVelocityStructureClosable,
+ configuration.Name);
+ return false;
+ }
return true;
}
@@ -365,6 +423,50 @@
}
///
+ /// Reads the probability collision secondary structure.
+ ///
+ /// The calculation read from the imported file.
+ /// The calculation to configure.
+ /// false when the probability collision secondary structure is invalid or
+ /// when there is a probability collision secondary structure but no structure defined,
+ /// true otherwise.
+ private bool TryReadProbabilityCollisionSecondaryStructure(StabilityPointStructuresCalculationConfiguration readCalculation,
+ StructuresCalculation calculation)
+ {
+ if (readCalculation.ProbabilityCollisionSecondaryStructure.HasValue)
+ {
+ if (calculation.InputParameters.Structure == null)
+ {
+ Log.LogCalculationConversionError(string.Format(RingtoetsCommonIOResources.CalculationConfigurationImporter_TryParameter_No_Structure_to_assign_Parameter_0_,
+ Resources.CalculationConfigurationImporter_ProbabilityCollisionSecondaryStructure_DisplayName),
+ calculation.Name);
+
+ return false;
+ }
+
+ double failureProbability = readCalculation.ProbabilityCollisionSecondaryStructure.Value;
+
+ try
+ {
+ calculation.InputParameters.ProbabilityCollisionSecondaryStructure = failureProbability;
+ }
+ catch (ArgumentOutOfRangeException e)
+ {
+ Log.LogOutOfRangeException(string.Format(
+ RingtoetsCommonIOResources.TryReadParameter_Value_0_ParameterName_1_is_invalid,
+ failureProbability,
+ Resources.CalculationConfigurationImporter_ProbabilityCollisionSecondaryStructure_DisplayName),
+ calculation.Name,
+ e);
+
+ return false;
+ }
+ }
+
+ return true;
+ }
+
+ ///
/// Reads the factor storm duration.
///
/// The calculation read from the imported file.
@@ -419,7 +521,7 @@
if (calculation.InputParameters.Structure == null)
{
Log.LogCalculationConversionError(string.Format(RingtoetsCommonIOResources.CalculationConfigurationImporter_TryParameter_No_Structure_to_assign_Parameter_0_,
- RingtoetsCommonIOResources.CalculationConfigurationImporter_InflowModelType_DisplayName),
+ Resources.CalculationConfigurationImporter_LoadSchematizationType_DisplayName),
calculation.Name);
return false;
@@ -433,6 +535,58 @@
return true;
}
+ ///
+ /// Reads the leveling count.
+ ///
+ /// The calculation read from the imported file.
+ /// The calculation to configure.
+ /// false when the leveling count is invalid or when there is a
+ /// leveling count but no structure defined, true otherwise.
+ private bool TryReadLevellingCount(StabilityPointStructuresCalculationConfiguration readCalculation, StructuresCalculation calculation)
+ {
+ if (readCalculation.LevellingCount.HasValue)
+ {
+ if (calculation.InputParameters.Structure == null)
+ {
+ Log.LogCalculationConversionError(string.Format(RingtoetsCommonIOResources.CalculationConfigurationImporter_TryParameter_No_Structure_to_assign_Parameter_0_,
+ Resources.CalculationConfigurationImporter_LevellingCount_DisplayName),
+ calculation.Name);
+
+ return false;
+ }
+
+ calculation.InputParameters.LevellingCount = readCalculation.LevellingCount.Value;
+ }
+
+ return true;
+ }
+
+ ///
+ /// Reads the vertical distance.
+ ///
+ /// The calculation read from the imported file.
+ /// The calculation to configure.
+ /// false when the vertical distance is invalid or when there is a
+ /// vertical distance but no structure defined, true otherwise.
+ private bool TryReadVerticalDistance(StabilityPointStructuresCalculationConfiguration readCalculation, StructuresCalculation calculation)
+ {
+ if (readCalculation.VerticalDistance.HasValue)
+ {
+ if (calculation.InputParameters.Structure == null)
+ {
+ Log.LogCalculationConversionError(string.Format(RingtoetsCommonIOResources.CalculationConfigurationImporter_TryParameter_No_Structure_to_assign_Parameter_0_,
+ Resources.CalculationConfigurationImporter_VerticalDistance_DisplayName),
+ calculation.Name);
+
+ return false;
+ }
+
+ calculation.InputParameters.VerticalDistance = (RoundedDouble) readCalculation.VerticalDistance.Value;
+ }
+
+ return true;
+ }
+
private bool TrySetHydraulicBoundaryLocation(string locationName, StructuresCalculation calculation)
{
HydraulicBoundaryLocation location;
Index: Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.IO/Properties/Resources.Designer.cs
===================================================================
diff -u -rff6bb6b2bd6eb8bbd7c7c954dcde6fa6770dc493 -r78822681793277150da4eac3ac214a9aa59a47dd
--- Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.IO/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision ff6bb6b2bd6eb8bbd7c7c954dcde6fa6770dc493)
+++ Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.IO/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision 78822681793277150da4eac3ac214a9aa59a47dd)
@@ -100,6 +100,53 @@
}
///
+ /// Looks up a localized string similar to het aantal nivelleringen per jaar.
+ ///
+ internal static string CalculationConfigurationImporter_LevellingCount_DisplayName {
+ get {
+ return ResourceManager.GetString("CalculationConfigurationImporter_LevellingCount_DisplayName", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to belastingschematisering.
+ ///
+ internal static string CalculationConfigurationImporter_LoadSchematizationType_DisplayName {
+ get {
+ return ResourceManager.GetString("CalculationConfigurationImporter_LoadSchematizationType_DisplayName", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to de kans op aanvaring tweede keermiddel per nivellering.
+ ///
+ internal static string CalculationConfigurationImporter_ProbabilityCollisionSecondaryStructure_DisplayName {
+ get {
+ return ResourceManager.GetString("CalculationConfigurationImporter_ProbabilityCollisionSecondaryStructure_DisplayNa" +
+ "me", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Er kan geen spreiding voor stochast 'kritiekestroomsnelheid' opgegeven worden..
+ ///
+ internal static string CalculationConfigurationImporter_ValidateStochasts_Cannot_define_spread_for_FlowVelocityStructureClosable {
+ get {
+ return ResourceManager.GetString("CalculationConfigurationImporter_ValidateStochasts_Cannot_define_spread_for_FlowV" +
+ "elocityStructureClosable", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to de afstand onderkant wand en teen van de dijk/berm.
+ ///
+ internal static string CalculationConfigurationImporter_VerticalDistance_DisplayName {
+ get {
+ return ResourceManager.GetString("CalculationConfigurationImporter_VerticalDistance_DisplayName", resourceCulture);
+ }
+ }
+
+ ///
/// Looks up a localized string similar to <?xml version="1.0" encoding="UTF-8"?>
///<!--
///Copyright (C) Stichting Deltares 2016. All rights reserved.
Index: Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.IO/Properties/Resources.resx
===================================================================
diff -u -rff6bb6b2bd6eb8bbd7c7c954dcde6fa6770dc493 -r78822681793277150da4eac3ac214a9aa59a47dd
--- Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.IO/Properties/Resources.resx (.../Resources.resx) (revision ff6bb6b2bd6eb8bbd7c7c954dcde6fa6770dc493)
+++ Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.IO/Properties/Resources.resx (.../Resources.resx) (revision 78822681793277150da4eac3ac214a9aa59a47dd)
@@ -123,6 +123,21 @@
faalkans herstel van gefaalde situatie
+
+ het aantal nivelleringen per jaar
+
+
+ belastingschematisering
+
+
+ de kans op aanvaring tweede keermiddel per nivellering
+
+
+ Er kan geen spreiding voor stochast 'kritiekestroomsnelheid' opgegeven worden.
+
+
+ de afstand onderkant wand en teen van de dijk/berm
+
..\Resources\KunstwerkenConstructiefFalenSchema.xsd;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252
Index: Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.IO.Test/Configurations/StabilityPointStructuresCalculationConfigurationImporterTest.cs
===================================================================
diff -u -rff6bb6b2bd6eb8bbd7c7c954dcde6fa6770dc493 -r78822681793277150da4eac3ac214a9aa59a47dd
--- Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.IO.Test/Configurations/StabilityPointStructuresCalculationConfigurationImporterTest.cs (.../StabilityPointStructuresCalculationConfigurationImporterTest.cs) (revision ff6bb6b2bd6eb8bbd7c7c954dcde6fa6770dc493)
+++ Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.IO.Test/Configurations/StabilityPointStructuresCalculationConfigurationImporterTest.cs (.../StabilityPointStructuresCalculationConfigurationImporterTest.cs) (revision 78822681793277150da4eac3ac214a9aa59a47dd)
@@ -76,13 +76,32 @@
"Een waarde van '1,1' als faalkans herstel van gefaalde situatie is ongeldig. De waarde voor de faalkans moet in het bereik [0,0, 1,0] liggen.");
yield return new TestCaseData(
+ "validConfigurationFlowVelocityStructureClosableStandardDeviation.xml",
+ "Er kan geen spreiding voor stochast 'kritiekestroomsnelheid' opgegeven worden.");
+ yield return new TestCaseData(
+ "validConfigurationFlowVelocityStructureClosableVariationCoefficient.xml",
+ "Er kan geen spreiding voor stochast 'kritiekestroomsnelheid' opgegeven worden.");
+
+ yield return new TestCaseData(
"validConfigurationInflowModelTypeWithoutStructure.xml",
"Er is geen kunstwerk opgegeven om instroommodel aan toe te voegen.");
yield return new TestCaseData(
"validConfigurationLoadSchematizationTypeWithoutStructure.xml",
- "Er is geen kunstwerk opgegeven om instroommodel aan toe te voegen.");
+ "Er is geen kunstwerk opgegeven om belastingschematisering aan toe te voegen.");
yield return new TestCaseData(
+ "validConfigurationProbabilityCollisionSecondaryStructureWithoutStructure.xml",
+ "Er is geen kunstwerk opgegeven om de kans op aanvaring tweede keermiddel per nivellering aan toe te voegen.");
+
+ yield return new TestCaseData(
+ "validConfigurationLevellingCountWithoutStructure.xml",
+ "Er is geen kunstwerk opgegeven om het aantal nivelleringen per jaar aan toe te voegen.");
+
+ yield return new TestCaseData(
+ "validConfigurationVerticalDistanceWithoutStructure.xml",
+ "Er is geen kunstwerk opgegeven om de afstand onderkant wand en teen van de dijk/berm aan toe te voegen.");
+
+ yield return new TestCaseData(
"validConfigurationStructureNormalOrientationWithoutStructure.xml",
"Er is geen kunstwerk opgegeven om oriƫntatie aan toe te voegen.");
yield return new TestCaseData(
@@ -306,8 +325,17 @@
},
EvaluationLevel = (RoundedDouble) 0.1,
FactorStormDurationOpenStructure = (RoundedDouble) 0.002,
+ FailureCollisionEnergy =
+ {
+ Mean = (RoundedDouble) 1.2,
+ CoefficientOfVariation = (RoundedDouble) 0.1
+ },
FailureProbabilityRepairClosure = 0.001,
FailureProbabilityStructureWithErosion = 0.0001,
+ FlowVelocityStructureClosable =
+ {
+ Mean = (RoundedDouble) 1.1
+ },
FlowWidthAtBottomProtection =
{
Mean = (RoundedDouble) 15.2,
@@ -319,18 +347,50 @@
Mean = (RoundedDouble) 0.5,
StandardDeviation = (RoundedDouble) 0.1
},
+ InsideWaterLevelFailureConstruction =
+ {
+ Mean = (RoundedDouble) 0.7,
+ StandardDeviation = (RoundedDouble) 0.1
+ },
+ LevelCrestStructure =
+ {
+ Mean = (RoundedDouble) 4.3,
+ StandardDeviation = (RoundedDouble) 0.1
+ },
+ LevellingCount = 1,
LoadSchematizationType = LoadSchematizationType.Quadratic,
ModelFactorSuperCriticalFlow =
{
Mean = (RoundedDouble) 1.10
},
+ ProbabilityCollisionSecondaryStructure = 0.00001,
+ UseBreakWater = true,
+ UseForeshore = false,
+ ShipMass =
+ {
+ Mean = (RoundedDouble) 16000,
+ CoefficientOfVariation = (RoundedDouble) 0.1
+ },
+ ShipVelocity =
+ {
+ Mean = (RoundedDouble) 1.2,
+ CoefficientOfVariation = (RoundedDouble) 0.1
+ },
+ StabilityLinearLoadModel =
+ {
+ Mean = (RoundedDouble) 1.2,
+ CoefficientOfVariation = (RoundedDouble) 0.1
+ },
+ StabilityQuadraticLoadModel =
+ {
+ Mean = (RoundedDouble) 1.2,
+ CoefficientOfVariation = (RoundedDouble) 0.1
+ },
StormDuration =
{
Mean = (RoundedDouble) 6.0
},
StructureNormalOrientation = (RoundedDouble) 7,
- UseBreakWater = true,
- UseForeshore = false,
StorageStructureArea =
{
Mean = (RoundedDouble) 15000,
@@ -341,6 +401,7 @@
Mean = (RoundedDouble) 1.2,
StandardDeviation = (RoundedDouble) 0.1
},
+ VerticalDistance = (RoundedDouble) 2,
WidthFlowApertures =
{
Mean = (RoundedDouble) 15.2,
Index: Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.IO.Test/test-data/StabilityPointStructuresCalculationConfigurationImporter/validConfigurationFlowVelocityStructureClosableStandardDeviation.xml
===================================================================
diff -u
--- Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.IO.Test/test-data/StabilityPointStructuresCalculationConfigurationImporter/validConfigurationFlowVelocityStructureClosableStandardDeviation.xml (revision 0)
+++ Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.IO.Test/test-data/StabilityPointStructuresCalculationConfigurationImporter/validConfigurationFlowVelocityStructureClosableStandardDeviation.xml (revision 78822681793277150da4eac3ac214a9aa59a47dd)
@@ -0,0 +1,11 @@
+
+
+
+ kunstwerk1
+
+
+ 0.1
+
+
+
+
Index: Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.IO.Test/test-data/StabilityPointStructuresCalculationConfigurationImporter/validConfigurationFlowVelocityStructureClosableVariationCoefficient.xml
===================================================================
diff -u
--- Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.IO.Test/test-data/StabilityPointStructuresCalculationConfigurationImporter/validConfigurationFlowVelocityStructureClosableVariationCoefficient.xml (revision 0)
+++ Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.IO.Test/test-data/StabilityPointStructuresCalculationConfigurationImporter/validConfigurationFlowVelocityStructureClosableVariationCoefficient.xml (revision 78822681793277150da4eac3ac214a9aa59a47dd)
@@ -0,0 +1,11 @@
+
+
+
+ kunstwerk1
+
+
+ 0.21
+
+
+
+
Index: Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.IO.Test/test-data/StabilityPointStructuresCalculationConfigurationImporter/validConfigurationLevellingCountWithoutStructure.xml
===================================================================
diff -u
--- Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.IO.Test/test-data/StabilityPointStructuresCalculationConfigurationImporter/validConfigurationLevellingCountWithoutStructure.xml (revision 0)
+++ Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.IO.Test/test-data/StabilityPointStructuresCalculationConfigurationImporter/validConfigurationLevellingCountWithoutStructure.xml (revision 78822681793277150da4eac3ac214a9aa59a47dd)
@@ -0,0 +1,6 @@
+
+
+
+ 1
+
+
Index: Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.IO.Test/test-data/StabilityPointStructuresCalculationConfigurationImporter/validConfigurationProbabilityCollisionSecondaryStructureWithoutStructure.xml
===================================================================
diff -u
--- Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.IO.Test/test-data/StabilityPointStructuresCalculationConfigurationImporter/validConfigurationProbabilityCollisionSecondaryStructureWithoutStructure.xml (revision 0)
+++ Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.IO.Test/test-data/StabilityPointStructuresCalculationConfigurationImporter/validConfigurationProbabilityCollisionSecondaryStructureWithoutStructure.xml (revision 78822681793277150da4eac3ac214a9aa59a47dd)
@@ -0,0 +1,6 @@
+
+
+
+ 0.1
+
+
Index: Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.IO.Test/test-data/StabilityPointStructuresCalculationConfigurationImporter/validConfigurationVerticalDistanceWithoutStructure.xml
===================================================================
diff -u
--- Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.IO.Test/test-data/StabilityPointStructuresCalculationConfigurationImporter/validConfigurationVerticalDistanceWithoutStructure.xml (revision 0)
+++ Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.IO.Test/test-data/StabilityPointStructuresCalculationConfigurationImporter/validConfigurationVerticalDistanceWithoutStructure.xml (revision 78822681793277150da4eac3ac214a9aa59a47dd)
@@ -0,0 +1,6 @@
+
+
+
+ 2
+
+
Index: Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.IO.Test/test-data/StabilityPointStructuresCalculationConfigurationImporter/validFullConfiguration.xml
===================================================================
diff -u -rff6bb6b2bd6eb8bbd7c7c954dcde6fa6770dc493 -r78822681793277150da4eac3ac214a9aa59a47dd
--- Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.IO.Test/test-data/StabilityPointStructuresCalculationConfigurationImporter/validFullConfiguration.xml (.../validFullConfiguration.xml) (revision ff6bb6b2bd6eb8bbd7c7c954dcde6fa6770dc493)
+++ Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.IO.Test/test-data/StabilityPointStructuresCalculationConfigurationImporter/validFullConfiguration.xml (.../validFullConfiguration.xml) (revision 78822681793277150da4eac3ac214a9aa59a47dd)
@@ -73,7 +73,6 @@
1.1
- 0.12
2