Index: Ringtoets/Piping/src/Ringtoets.Piping.Primitives/PipingSoilLayer.cs =================================================================== diff -u -r8ed108b83f575f6cb7dc1b89224606894a4bcb7a -rcb6877f670bacc7a6a896ab132d592eeef1107b5 --- Ringtoets/Piping/src/Ringtoets.Piping.Primitives/PipingSoilLayer.cs (.../PipingSoilLayer.cs) (revision 8ed108b83f575f6cb7dc1b89224606894a4bcb7a) +++ Ringtoets/Piping/src/Ringtoets.Piping.Primitives/PipingSoilLayer.cs (.../PipingSoilLayer.cs) (revision cb6877f670bacc7a6a896ab132d592eeef1107b5) @@ -41,6 +41,14 @@ { Top = top; MaterialName = string.Empty; + AbovePhreaticLevel = double.NaN; + DryUnitWeight = double.NaN; + BelowPhreaticLevelMean = double.NaN; + BelowPhreaticLevelDeviation = double.NaN; + DiameterD70Mean = double.NaN; + DiameterD70Deviation = double.NaN; + PermeabilityMean = double.NaN; + PermeabilityDeviation = double.NaN; } /// @@ -57,20 +65,52 @@ /// Gets or sets the volumic weight of the above the phreatic level. /// [kN/m³] /// - public double? AbovePhreaticLevel { get; set; } + public double AbovePhreaticLevel { get; set; } /// - /// Gets or sets the volumic weight of the below the phreatic level. + /// Gets or sets the dry unit weight for the . + /// + public double DryUnitWeight { get; set; } + + /// + /// Gets or sets mean of the distrubtion for the volumic weight of the below the phreatic level. /// [kN/m³] /// - public double? BelowPhreaticLevel { get; set; } + public double BelowPhreaticLevelMean { get; set; } /// - /// Gets or sets the dry unit weight for the . + /// Gets or sets deviation of the distrubtion for the volumic weight of the below the phreatic level. + /// [kN/m³] /// - public double? DryUnitWeight { get; set; } + public double BelowPhreaticLevelDeviation { get; set; } /// + /// Gets or sets the mean of the distribution for the mean diameter of small scale tests applied to different kinds of sand, + /// on which the formula of Sellmeijer has been fit. + /// [m] + /// + public double DiameterD70Mean { get; set; } + + /// + /// Gets or sets the deviation of the distribution for the mean diameter of small scale tests applied to different kinds of sand, + /// on which the formula of Sellmeijer has been fit. + /// [m] + /// + public double DiameterD70Deviation { get; set; } + + /// + /// Gets or sets the mean of the distribution for the the Darcy-speed with which water flows through the aquifer layer. + /// [m/s] + /// + public double PermeabilityMean { get; set; } + + /// + /// Gets or sets the deviation of the distribution for the Darcy-speed with which water flows through the aquifer layer. + /// [m/s] + /// + public double PermeabilityDeviation { get; set; } + + /// /// Gets or sets the name of the material that was assigned to the . /// /// Thrown when is null.