// Copyright (C) Stichting Deltares 2016. 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 Core.Common.Base.Data; using Ringtoets.Common.Data; using Ringtoets.Common.Data.Probabilistics; using BaseConstructionProperties = Ringtoets.Common.Data.StructureBase.ConstructionProperties; namespace Ringtoets.HeightStructures.Data { /// /// Definition of a height structure for the . /// public class HeightStructure : StructureBase { /// /// Initializes a new instance of the class. /// /// The construction properties. /// Thrown when /// or is null , empty or consists of whitespace. /// Thrown when is null. /// When any stochastic variable parameter /// is out if its valid domain. public HeightStructure(ConstructionProperties constructionProperties) : base(constructionProperties) { LevelCrestStructure = new NormalDistribution(2) { Mean = new RoundedDouble(2, constructionProperties.LevelCrestStructure.Mean), StandardDeviation = new RoundedDouble(2, constructionProperties.LevelCrestStructure.StandardDeviation) }; FlowWidthAtBottomProtection = new LogNormalDistribution(2) { Mean = new RoundedDouble(2, constructionProperties.FlowWidthAtBottomProtection.Mean), StandardDeviation = new RoundedDouble(2, constructionProperties.FlowWidthAtBottomProtection.StandardDeviation) }; CriticalOvertoppingDischarge = new VariationCoefficientLogNormalDistribution(2) { Mean = new RoundedDouble(2, constructionProperties.CriticalOvertoppingDischarge.Mean), CoefficientOfVariation = new RoundedDouble(2, constructionProperties.CriticalOvertoppingDischarge.CoefficientOfVariation) }; WidthFlowApertures = new VariationCoefficientNormalDistribution(2) { Mean = new RoundedDouble(2, constructionProperties.WidthFlowApertures.Mean), CoefficientOfVariation = new RoundedDouble(2, constructionProperties.WidthFlowApertures.CoefficientOfVariation) }; FailureProbabilityStructureWithErosion = constructionProperties.FailureProbabilityStructureWithErosion; StorageStructureArea = new VariationCoefficientLogNormalDistribution(2) { Mean = new RoundedDouble(2, constructionProperties.StorageStructureArea.Mean), CoefficientOfVariation = new RoundedDouble(2, constructionProperties.StorageStructureArea.CoefficientOfVariation) }; AllowedLevelIncreaseStorage = new LogNormalDistribution(2) { Mean = new RoundedDouble(2, constructionProperties.AllowedLevelIncreaseStorage.Mean), StandardDeviation = new RoundedDouble(2, constructionProperties.AllowedLevelIncreaseStorage.StandardDeviation) }; } /// /// Gets the crest level of the height structure. /// public NormalDistribution LevelCrestStructure { get; private set; } /// /// Gets the flow width of the height structure at the bottom protection. /// public LogNormalDistribution FlowWidthAtBottomProtection { get; private set; } /// /// Gets the critical overtopping discharge of the height structure. /// public VariationCoefficientLogNormalDistribution CriticalOvertoppingDischarge { get; private set; } /// /// Gets the flow apertures width of the height structure. /// public VariationCoefficientNormalDistribution WidthFlowApertures { get; private set; } /// /// Gets the failure probability of the height structure, given erosion. /// public double FailureProbabilityStructureWithErosion { get; private set; } /// /// Gets the storage area of the height structure. /// public VariationCoefficientLogNormalDistribution StorageStructureArea { get; private set; } /// /// Gets the allowed increase of level for storage of the height structure. /// public LogNormalDistribution AllowedLevelIncreaseStorage { get; private set; } /// /// Class holding the various construction parameters for . /// public new class ConstructionProperties : BaseConstructionProperties { /// /// Initializes a new instance of the class. /// public ConstructionProperties() { LevelCrestStructure = new NormalDistribution(2); FlowWidthAtBottomProtection = new LogNormalDistribution(2); CriticalOvertoppingDischarge = new VariationCoefficientLogNormalDistribution(2); WidthFlowApertures = new VariationCoefficientNormalDistribution(2); StorageStructureArea = new VariationCoefficientLogNormalDistribution(2); AllowedLevelIncreaseStorage = new LogNormalDistribution(2); } /// /// Gets the crest level of the height structure. /// public NormalDistribution LevelCrestStructure { get; private set; } /// /// Gets the flow width of the height structure at the bottom protection. /// public LogNormalDistribution FlowWidthAtBottomProtection { get; private set; } /// /// Gets the critical overtopping discharge of the height structure. /// public VariationCoefficientLogNormalDistribution CriticalOvertoppingDischarge { get; private set; } /// /// Gets the flow apertures width of the height structure. /// public VariationCoefficientNormalDistribution WidthFlowApertures { get; private set; } /// /// Gets the failure probability of the height structure, given erosion. /// public double FailureProbabilityStructureWithErosion { get; set; } /// /// Gets the storage area of the height structure. /// public VariationCoefficientLogNormalDistribution StorageStructureArea { get; private set; } /// /// Gets the allowed increase of level for storage of the height structure. /// public LogNormalDistribution AllowedLevelIncreaseStorage { get; private set; } } } }