// 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. namespace Ringtoets.ClosingStructures.IO { /// /// Container of identifiers related to closing structure calculation configuration schema definitions. /// public static class ClosingStructuresConfigurationSchemaIdentifiers { #region parameters /// /// The identifier for the identical apertures element. /// public const string IdenticalApertures = "nrdoorstroomopeningen"; /// /// The identifier for the factor storm duration open structure element. /// public const string FactorStormDurationOpenStructure = "factorstormduur"; /// /// The identifier for the failure probability open structure element. /// public const string FailureProbabilityOpenStructure = "kansmislukkensluiting"; /// /// The identifier for the failure probability reparation element. /// public const string FailureProbabilityReparation = "faalkansherstel"; /// /// The identifier for the probability or frequency open structure before flooding element. /// public const string ProbabilityOrFrequencyOpenStructureBeforeFlooding = "kansopopenstaan"; /// /// The identifier for the inflow model type element. /// public const string InflowModelType = "instroommodel"; #endregion #region stochasts /// /// The identifier for the level crest structure not closing stochast name. /// public const string LevelCrestStructureNotClosingStochastName = "kruinhoogte"; /// /// The identifier for the inside water level stochast name. /// public const string InsideWaterLevelStochastName = "binnenwaterstand"; /// /// The identifier for the drain coefficient stochast name. /// public const string DrainCoefficientStochastName = "afvoercoefficient"; /// /// The identifier for the threshold height open weir stochast name. /// public const string ThresholdHeightOpenWeirStochastName = "drempelhoogte"; /// /// The identifier for the area flow apertures stochast name. /// public const string AreaFlowAperturesStochastName = "doorstroomoppervlak"; #endregion #region inflow model type /// /// The identifier for the flooded culvert inflow model type. /// public const string FloodedCulvert = "verdronkenkoker"; /// /// The identifier for the low will inflow model type. /// public const string LowSill = "lagedrempel"; /// /// The identifier for the vertical wall inflow model type. /// public const string VerticalWall = "verticalewand"; #endregion } }