Index: Ringtoets/Common/src/Ringtoets.Common.IO/SoilProfile/LayerProperties.cs
===================================================================
diff -u -r09ab76fbe4f768414ad7dd356eb9b2ebd5b1781c -r8dfec2e1be6d23c02919ff849906fc89822f99b3
--- Ringtoets/Common/src/Ringtoets.Common.IO/SoilProfile/LayerProperties.cs (.../LayerProperties.cs) (revision 09ab76fbe4f768414ad7dd356eb9b2ebd5b1781c)
+++ Ringtoets/Common/src/Ringtoets.Common.IO/SoilProfile/LayerProperties.cs (.../LayerProperties.cs) (revision 8dfec2e1be6d23c02919ff849906fc89822f99b3)
@@ -196,5 +196,117 @@
/// [m/s]
///
public double? PermeabilityCoefficientOfVariation { get; }
+
+ ///
+ /// Gets or sets a value indicating whether to use POP for the layer.
+ ///
+ public bool? UsePop { get; }
+
+ ///
+ /// Gets or sets the shear strength model to use for the layer.
+ ///
+ public ShearStrengthModel? ShearStrengthModel { get; }
+
+ ///
+ /// Gets or sets the mean of the distribution for the volumic weight of the layer above the phreatic level.
+ /// [kN/m³]
+ ///
+ public double? AbovePhreaticLevelMean { get; }
+
+ ///
+ /// Gets or sets the deviation of the distribution for the volumic weight of the layer above the phreatic level.
+ /// [kN/m³]
+ ///
+ public double? AbovePhreaticLevelDeviation { get; }
+
+ ///
+ /// Gets or sets the mean of the distribution for the cohesion.
+ /// [kN/m³]
+ ///
+ public double? CohesionMean { get; }
+
+ ///
+ /// Gets or sets the deviation of the distribution for the cohesion.
+ /// [kN/m³]
+ ///
+ public double? CohesionDeviation { get; }
+
+ ///
+ /// Gets or sets the shift of the distribution for the cohesion.
+ /// [kN/m³]
+ ///
+ public double? CohesionShift { get; }
+
+ ///
+ /// Gets or sets the mean of the distribution for the friction angle
+ /// [°]
+ ///
+ public double? FrictionAngleMean { get; }
+
+ ///
+ /// Gets or sets the deviation of the distribution for the friction angle.
+ /// [°]
+ ///
+ public double? FrictionAngleDeviation { get; }
+
+ ///
+ /// Gets or sets the shift of the distribution for the friction angle.
+ /// [°]
+ ///
+ public double? FrictionAngleShift { get; }
+
+ ///
+ /// Gets or sets the mean of the distribution for the ratio of shear strength S
+ /// [-]
+ ///
+ public double? ShearStrengthRatioMean { get; }
+
+ ///
+ /// Gets or sets the deviation of the distribution for the ratio of shear strength S.
+ /// [-]
+ ///
+ public double? ShearStrengthRatioDeviation { get; }
+
+ ///
+ /// Gets or sets the shift of the distribution for the ratio of shear strength S.
+ /// [-]
+ ///
+ public double? ShearStrengthRatioShift { get; }
+
+ ///
+ /// Gets or sets the mean of the distribution for the strength increase exponent (m)
+ /// [-]
+ ///
+ public double? StrengthIncreaseExponentMean { get; }
+
+ ///
+ /// Gets or sets the deviation of the distribution for the strength increase exponent (m).
+ /// [-]
+ ///
+ public double? StrengthIncreaseExponentDeviation { get; }
+
+ ///
+ /// Gets or sets the shift of the distribution for the strength increase exponent (m).
+ /// [-]
+ ///
+ public double? StrengthIncreaseExponentShift { get; }
+
+ ///
+ /// Gets or sets the mean of the distribution for the POP
+ /// [kN/m²]
+ ///
+ public double? PopMean { get; }
+
+ ///
+ /// Gets or sets the deviation of the distribution for the POP.
+ /// [kN/m²]
+ ///
+ public double? PopDeviation { get; }
+
+ ///
+ /// Gets or sets the shift of the distribution for the POP.
+ /// [kN/m²]
+ ///
+ public double? PopShift { get; }
}
}
\ No newline at end of file