// 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 System.Collections.Generic;
using System.ComponentModel;
using Ringtoets.ClosingStructures.Data;
using Ringtoets.Common.Service;
using Ringtoets.Common.Service.ValidationRules;
using RingtoetsCommonFormsResources = Ringtoets.Common.Forms.Properties.Resources;
using ClosingStructuresFormsResources = Ringtoets.ClosingStructures.Forms.Properties.Resources;
namespace Ringtoets.ClosingStructures.Service
{
///
/// The closing structures validation rules registry.
///
public class ClosingStructuresValidationRulesRegistry : IStructuresValidationRulesRegistry
{
public IEnumerable GetValidationRules(ClosingStructuresInput input)
{
if (input == null)
{
throw new ArgumentNullException(nameof(input));
}
ClosingStructureInflowModelType inflowModelType = input.InflowModelType;
if (!Enum.IsDefined(typeof(ClosingStructureInflowModelType), inflowModelType))
{
throw new InvalidEnumArgumentException(nameof(input),
(int) inflowModelType,
typeof(ClosingStructureInflowModelType));
}
IEnumerable validationRules;
switch (inflowModelType)
{
case ClosingStructureInflowModelType.VerticalWall:
validationRules = GetVerticalWallValidationRules(input);
break;
case ClosingStructureInflowModelType.LowSill:
validationRules = GetLowSillValidationRules(input);
break;
case ClosingStructureInflowModelType.FloodedCulvert:
validationRules = GetFloodedCulvertValidationRules(input);
break;
default:
throw new NotSupportedException();
}
return validationRules;
}
private static IEnumerable GetVerticalWallValidationRules(ClosingStructuresInput input)
{
return new ValidationRule[]
{
new UseBreakWaterRule(input),
new VariationCoefficientLogNormalDistributionRule(
input.StormDuration,
ParameterNameExtractor.GetFromDisplayName(RingtoetsCommonFormsResources.Structure_StormDuration_DisplayName)),
new NormalDistributionRule(
input.ModelFactorSuperCriticalFlow,
ParameterNameExtractor.GetFromDisplayName(RingtoetsCommonFormsResources.Structure_ModelFactorSuperCriticalFlow_DisplayName)),
new NumericInputRule(
input.FactorStormDurationOpenStructure,
ParameterNameExtractor.GetFromDisplayName(RingtoetsCommonFormsResources.Structure_FactorStormDurationOpenStructure_DisplayName)),
new NormalDistributionRule(
input.WidthFlowApertures,
ParameterNameExtractor.GetFromDisplayName(RingtoetsCommonFormsResources.Structure_WidthFlowApertures_DisplayName)),
new NumericInputRule(
input.StructureNormalOrientation,
ParameterNameExtractor.GetFromDisplayName(RingtoetsCommonFormsResources.Structure_StructureNormalOrientation_DisplayName)),
new LogNormalDistributionRule(
input.FlowWidthAtBottomProtection,
ParameterNameExtractor.GetFromDisplayName(RingtoetsCommonFormsResources.Structure_FlowWidthAtBottomProtection_DisplayName)),
new VariationCoefficientLogNormalDistributionRule(
input.StorageStructureArea,
ParameterNameExtractor.GetFromDisplayName(RingtoetsCommonFormsResources.Structure_StorageStructureArea_DisplayName)),
new LogNormalDistributionRule(
input.AllowedLevelIncreaseStorage,
ParameterNameExtractor.GetFromDisplayName(RingtoetsCommonFormsResources.Structure_AllowedLevelIncreaseStorage_DisplayName)),
new NormalDistributionRule(
input.LevelCrestStructureNotClosing,
ParameterNameExtractor.GetFromDisplayName(ClosingStructuresFormsResources.LevelCrestStructureNotClosing_DisplayName)),
new VariationCoefficientLogNormalDistributionRule(
input.CriticalOvertoppingDischarge,
ParameterNameExtractor.GetFromDisplayName(RingtoetsCommonFormsResources.Structure_CriticalOvertoppingDischarge_DisplayName))
};
}
private static IEnumerable GetLowSillValidationRules(ClosingStructuresInput input)
{
return new ValidationRule[]
{
new UseBreakWaterRule(input),
new VariationCoefficientLogNormalDistributionRule(
input.StormDuration,
ParameterNameExtractor.GetFromDisplayName(RingtoetsCommonFormsResources.Structure_StormDuration_DisplayName)),
new NormalDistributionRule(
input.InsideWaterLevel,
ParameterNameExtractor.GetFromDisplayName(RingtoetsCommonFormsResources.Structure_InsideWaterLevel_DisplayName)),
new NormalDistributionRule(
input.ModelFactorSuperCriticalFlow,
ParameterNameExtractor.GetFromDisplayName(RingtoetsCommonFormsResources.Structure_ModelFactorSuperCriticalFlow_DisplayName)),
new NumericInputRule(
input.FactorStormDurationOpenStructure,
ParameterNameExtractor.GetFromDisplayName(RingtoetsCommonFormsResources.Structure_FactorStormDurationOpenStructure_DisplayName)),
new NormalDistributionRule(
input.WidthFlowApertures,
ParameterNameExtractor.GetFromDisplayName(RingtoetsCommonFormsResources.Structure_WidthFlowApertures_DisplayName)),
new LogNormalDistributionRule(
input.FlowWidthAtBottomProtection,
ParameterNameExtractor.GetFromDisplayName(RingtoetsCommonFormsResources.Structure_FlowWidthAtBottomProtection_DisplayName)),
new VariationCoefficientLogNormalDistributionRule(
input.StorageStructureArea,
ParameterNameExtractor.GetFromDisplayName(RingtoetsCommonFormsResources.Structure_StorageStructureArea_DisplayName)),
new LogNormalDistributionRule(
input.AllowedLevelIncreaseStorage,
ParameterNameExtractor.GetFromDisplayName(RingtoetsCommonFormsResources.Structure_AllowedLevelIncreaseStorage_DisplayName)),
new NormalDistributionRule(
input.ThresholdHeightOpenWeir,
ParameterNameExtractor.GetFromDisplayName(RingtoetsCommonFormsResources.Structure_ThresholdHeightOpenWeir_DisplayName)),
new VariationCoefficientLogNormalDistributionRule(
input.CriticalOvertoppingDischarge,
ParameterNameExtractor.GetFromDisplayName(RingtoetsCommonFormsResources.Structure_CriticalOvertoppingDischarge_DisplayName))
};
}
private static IEnumerable GetFloodedCulvertValidationRules(ClosingStructuresInput input)
{
return new ValidationRule[]
{
new UseBreakWaterRule(input),
new VariationCoefficientLogNormalDistributionRule(
input.StormDuration,
ParameterNameExtractor.GetFromDisplayName(RingtoetsCommonFormsResources.Structure_StormDuration_DisplayName)),
new NormalDistributionRule(
input.InsideWaterLevel,
ParameterNameExtractor.GetFromDisplayName(RingtoetsCommonFormsResources.Structure_InsideWaterLevel_DisplayName)),
new NormalDistributionRule(
input.DrainCoefficient,
ParameterNameExtractor.GetFromDisplayName(RingtoetsCommonFormsResources.Structure_DrainCoefficient_DisplayName)),
new NumericInputRule(
input.FactorStormDurationOpenStructure,
ParameterNameExtractor.GetFromDisplayName(RingtoetsCommonFormsResources.Structure_FactorStormDurationOpenStructure_DisplayName)),
new LogNormalDistributionRule(
input.AreaFlowApertures,
ParameterNameExtractor.GetFromDisplayName(RingtoetsCommonFormsResources.Structure_AreaFlowApertures_DisplayName)),
new LogNormalDistributionRule(
input.FlowWidthAtBottomProtection,
ParameterNameExtractor.GetFromDisplayName(RingtoetsCommonFormsResources.Structure_FlowWidthAtBottomProtection_DisplayName)),
new VariationCoefficientLogNormalDistributionRule(
input.StorageStructureArea,
ParameterNameExtractor.GetFromDisplayName(RingtoetsCommonFormsResources.Structure_StorageStructureArea_DisplayName)),
new LogNormalDistributionRule(
input.AllowedLevelIncreaseStorage,
ParameterNameExtractor.GetFromDisplayName(RingtoetsCommonFormsResources.Structure_AllowedLevelIncreaseStorage_DisplayName)),
new VariationCoefficientLogNormalDistributionRule(
input.CriticalOvertoppingDischarge,
ParameterNameExtractor.GetFromDisplayName(RingtoetsCommonFormsResources.Structure_CriticalOvertoppingDischarge_DisplayName))
};
}
}
}