Index: dam engine/trunk/src/Deltares.DamEngine.Data/Geotechnics/Soil.cs
===================================================================
diff -u -r487 -r728
--- dam engine/trunk/src/Deltares.DamEngine.Data/Geotechnics/Soil.cs (.../Soil.cs) (revision 487)
+++ dam engine/trunk/src/Deltares.DamEngine.Data/Geotechnics/Soil.cs (.../Soil.cs) (revision 728)
@@ -220,7 +220,7 @@
///
/// Dilatancy (shear thickening) type
///
- public DilatancyType DilatancyType { get; set; } = DilatancyType.Phi;
+ public DilatancyType? DilatancyType { get; set; } = null;
///
/// Gets or sets the strength increase exponent.
@@ -233,7 +233,24 @@
///
/// Shear strength model to use
///
- public ShearStrengthModel ShearStrengthModel { get; set; } = ShearStrengthModel.CPhi;
+ public ShearStrengthModel? ShearStrengthModel { get; set; } = null;
+
+ ///
+ /// Gets or sets a value indicating whether to use the default shear strength model.
+ ///
+ ///
+ /// true if default shear strength model must be used; otherwise, false.
+ ///
+ public bool? DefaultShearStrengthModel { get; set; } = null;
+
+ ///
+ /// Gets or sets the slope of the rest profile.
+ ///
+ ///
+ /// The slope of the rest profile.
+ ///
+ public double SlopeRestProfile { get; set; } = double.NaN;
+
#endregion