Index: Ringtoets/Piping/src/Ringtoets.Piping.IO/Builders/SoilLayer2D.cs =================================================================== diff -u -rcb6877f670bacc7a6a896ab132d592eeef1107b5 -r6e00eba7f45883916d98df04a84f6d0dca2f61fc --- Ringtoets/Piping/src/Ringtoets.Piping.IO/Builders/SoilLayer2D.cs (.../SoilLayer2D.cs) (revision cb6877f670bacc7a6a896ab132d592eeef1107b5) +++ Ringtoets/Piping/src/Ringtoets.Piping.IO/Builders/SoilLayer2D.cs (.../SoilLayer2D.cs) (revision 6e00eba7f45883916d98df04a84f6d0dca2f61fc) @@ -100,16 +100,22 @@ } /// - /// Constructs a (1D) based on the and set for the . + /// Constructs a (1D) based on the and + /// set for the . /// /// The point from which to take a 1D profile. /// The bottom level of the . /// A of . - /// Thrown when any of the or - /// contain a vertical line at . + /// Thrown when either: + /// + /// any of the or contain a vertical + /// line at + /// any of the distributions of the stochastic parameters is not defined as lognormal + /// + /// internal IEnumerable AsPipingSoilLayers(double atX, out double bottom) { - ValidateFieldsForPiping(); + ValidateStochasticParametersForPiping(); bottom = Double.MaxValue; var result = new Collection(); @@ -137,7 +143,7 @@ Color = SoilLayerColorConversionHelper.ColorFromNullableDouble(Color) }; - SetOptionalFields(pipingSoilLayer); + SetOptionalStochasticParameters(pipingSoilLayer); result.Add(pipingSoilLayer); }