// Copyright (C) Stichting Deltares 2017. All rights reserved. // // This file is part of Ringtoets. // // Ringtoets is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // // All names, logos, and references to "Deltares" are registered trademarks of // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. using System; using Ringtoets.Piping.IO.Exceptions; using Ringtoets.Piping.IO.Properties; using Ringtoets.Piping.Primitives; namespace Ringtoets.Piping.IO.Builders { /// /// Class containing parameters which are defined for both 1D and 2D soil layers. /// internal abstract class GenericSoilLayerParameters { /// /// Gets or sets a value representing whether the layer is an aquifer. /// public double? IsAquifer { get; set; } /// /// Sets the values of the optional stochastic parameters for the given . /// /// The to set the property values for. /// Thrown when is null. /// This method does not perform validation. Use to /// verify whether the distributions for the stochastic parameters are correctly defined. protected void SetOptionalStochasticParameters(PipingSoilLayer pipingSoilLayer) { if (pipingSoilLayer == null) { throw new ArgumentNullException(nameof(pipingSoilLayer)); } if (BelowPhreaticLevelMean.HasValue) { pipingSoilLayer.BelowPhreaticLevelMean = BelowPhreaticLevelMean.Value; } if (BelowPhreaticLevelDeviation.HasValue) { pipingSoilLayer.BelowPhreaticLevelDeviation = BelowPhreaticLevelDeviation.Value; } if (BelowPhreaticLevelShift.HasValue) { pipingSoilLayer.BelowPhreaticLevelShift = BelowPhreaticLevelShift.Value; } if (DiameterD70Mean.HasValue) { pipingSoilLayer.DiameterD70Mean = DiameterD70Mean.Value; } if (DiameterD70CoefficientOfVariation.HasValue) { pipingSoilLayer.DiameterD70CoefficientOfVariation = DiameterD70CoefficientOfVariation.Value; } if (PermeabilityMean.HasValue) { pipingSoilLayer.PermeabilityMean = PermeabilityMean.Value; } if (PermeabilityCoefficientOfVariation.HasValue) { pipingSoilLayer.PermeabilityCoefficientOfVariation = PermeabilityCoefficientOfVariation.Value; } } /// /// Validates whether the values of the distribution and shift for the stochastic parameters /// are correct for creating a . /// /// Thrown when any of the distributions of the /// stochastic parameters is not defined as lognormal or is shifted when it should not be. protected void ValidateStochasticParametersForPiping() { ValidateIsLogNormal( BelowPhreaticLevelDistribution, Resources.SoilLayer_BelowPhreaticLevelDistribution_Description); ValidateIsNonShiftedLogNormal( DiameterD70Distribution, DiameterD70Shift, Resources.SoilLayer_DiameterD70Distribution_Description); ValidateIsNonShiftedLogNormal( PermeabilityDistribution, PermeabilityShift, Resources.SoilLayer_PermeabilityDistribution_Description); } /// /// Gets or sets the name of the material that was assigned to the layer. /// internal string MaterialName { get; set; } /// /// Gets or sets the value representing the color that was used to represent the layer. /// internal double? Color { get; set; } /// /// Gets or sets the distribution for the volumic weight of the layer below the /// phreatic level. /// [kN/m³] /// internal long? BelowPhreaticLevelDistribution { get; set; } /// /// Gets or sets the shift of the distribution for the volumic weight of the layer /// below the phreatic level. /// [kN/m³] /// internal double? BelowPhreaticLevelShift { get; set; } /// /// Gets or sets the mean of the distribution for the volumic weight of the layer /// below the phreatic level. /// [kN/m³] /// internal double? BelowPhreaticLevelMean { get; set; } /// /// Gets or sets the deviation of the distribution for the volumic weight of the layer below the phreatic level. /// [kN/m³] /// internal double? BelowPhreaticLevelDeviation { get; set; } /// /// Gets or sets 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] /// internal long? DiameterD70Distribution { get; set; } /// /// Gets or sets the shift 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] /// internal double? DiameterD70Shift { 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] /// internal double? DiameterD70Mean { get; set; } /// /// Gets or sets the coefficient of variation 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] /// internal double? DiameterD70CoefficientOfVariation { get; set; } /// /// Gets or sets the distribution for the Darcy-speed with which water flows through the aquifer layer. /// [m/s] /// internal long? PermeabilityDistribution { get; set; } /// /// Gets or sets the shift of the distribution for the Darcy-speed with which water flows through the aquifer layer. /// [m/s] /// internal double? PermeabilityShift { 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] /// internal double? PermeabilityMean { get; set; } /// /// Gets or sets the coefficient of variation of the distribution for the Darcy-speed with which water flows through the aquifer layer. /// [m/s] /// internal double? PermeabilityCoefficientOfVariation { get; set; } private static void ValidateIsNonShiftedLogNormal(long? distribution, double? shift, string incorrectDistibutionParameter) { if (distribution.HasValue && (distribution != SoilLayerConstants.LogNormalDistributionValue || shift != 0.0)) { throw new SoilLayerConversionException(string.Format( Resources.SoilLayer_Stochastic_parameter_0_has_no_lognormal_distribution, incorrectDistibutionParameter)); } } private static void ValidateIsLogNormal(long? distribution, string incorrectDistibutionParameter) { if (distribution.HasValue && distribution != SoilLayerConstants.LogNormalDistributionValue) { throw new SoilLayerConversionException(string.Format( Resources.SoilLayer_Stochastic_parameter_0_has_no_shifted_lognormal_distribution, incorrectDistibutionParameter)); } } } }