// 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 Ringtoets.Common.IO.Configurations; namespace Ringtoets.StabilityPointStructures.IO { /// /// Configuration of a stability point structures calculation. /// public class StabilityPointStructuresCalculationConfiguration : StructuresCalculationConfiguration { /// /// Creates a new instance of . /// /// The name of the . /// Thrown when is null. public StabilityPointStructuresCalculationConfiguration(string name) : base(name) {} /// /// Gets or sets the stochast configuration for the area flow apertures of the structure. /// public MeanStandardDeviationStochastConfiguration AreaFlowApertures { get; set; } /// /// Gets or sets the stochast configuration for the bank width of the structure. /// public MeanStandardDeviationStochastConfiguration BankWidth { get; set; } /// /// Gets or sets the stochast configuration for the constructive strength of the linear load model of the structure. /// public MeanVariationCoefficientStochastConfiguration ConstructiveStrengthLinearLoadModel { get; set; } /// /// Gets or sets the stochast configuration for the constructive strength of the quadratic load model of the structure. /// public MeanVariationCoefficientStochastConfiguration ConstructiveStrengthQuadraticLoadModel { get; set; } /// /// Gets or sets the evaluation level of the structure. /// public double? EvaluationLevel { get; set; } /// /// Gets or sets the stochast configuration for the failure collision energy of the structure. /// public MeanVariationCoefficientStochastConfiguration FailureCollisionEnergy { get; set; } /// /// Gets or sets the failure probability of repairing a closure of the structure. /// public double? FailureProbabilityRepairClosure { get; set; } /// /// Gets or sets the stochast configuration for the flow velocity structure closable of the structure. /// public MeanVariationCoefficientStochastConfiguration FlowVelocityStructureClosable { get; set; } /// /// Gets or sets the inflow model type of the structure. /// public ConfigurationInflowModelType InflowModelType { get; set; } /// /// Gets or sets the stochast configuration for the inside water level of the structure. /// public MeanStandardDeviationStochastConfiguration InsideWaterLevel { get; set; } /// /// Gets or sets the stochast configuration for the inside water level failure construction of the structure. /// public MeanStandardDeviationStochastConfiguration InsideWaterLevelFailureConstruction { get; set; } /// /// Gets or sets the stochast configuration for the crest level of the structure. /// public MeanStandardDeviationStochastConfiguration LevelCrestStructure { get; set; } /// /// Gets or sets the leveling count of the structure. /// public int? LevellingCount { get; set; } /// /// Gets or sets the probability of a secondary collision on the structure per leveling. /// public double? ProbabilityCollisionSecondaryStructure { get; set; } /// /// Gets or sets the stochast configuration for the mass of the ship. /// public MeanVariationCoefficientStochastConfiguration ShipMass { get; set; } /// /// Gets or sets the stochast configuration for the velocity of the ship. /// public MeanVariationCoefficientStochastConfiguration ShipVelocity { get; set; } /// /// Gets or sets the stochast configuration for the stability properties of the linear load model of the structure. /// public MeanVariationCoefficientStochastConfiguration StabilityLinearLoadModel { get; set; } /// /// Gets or sets the stochast configuration for the stability properties of the quadratic load model of the structure. /// public MeanVariationCoefficientStochastConfiguration StabilityQuadraticLoadModel { get; set; } /// /// Gets or sets the stochast configuration for the threshold height of the open weir of the structure. /// public MeanStandardDeviationStochastConfiguration ThresholdHeightOpenWeir { get; set; } /// /// Gets or sets the vertical distance of the structure. /// public double? VerticalDistance { get; set; } } }