// 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 Application.Ringtoets.Storage.Create.IllustrationPoints;
using Application.Ringtoets.Storage.DbContext;
using Core.Common.Utils.Extensions;
using Ringtoets.ClosingStructures.Data;
using Ringtoets.Common.Data;
using Ringtoets.Common.Data.Probability;
using Ringtoets.Common.Data.Structures;
using Ringtoets.HeightStructures.Data;
using Ringtoets.StabilityPointStructures.Data;
namespace Application.Ringtoets.Storage.Create
{
///
/// Extension methods for related
/// to creating structures calculation entities.
///
internal static class StructuresCalculationCreateExtensions
{
private static void Create(this StructuresInputBase input, IStructuresCalculationEntity entityToUpdate,
PersistenceRegistry registry)
where T : StructureBase
{
if (entityToUpdate == null)
{
throw new ArgumentNullException(nameof(entityToUpdate));
}
if (registry == null)
{
throw new ArgumentNullException(nameof(registry));
}
entityToUpdate.StormDurationMean = input.StormDuration.Mean.ToNaNAsNull();
entityToUpdate.StructureNormalOrientation = input.StructureNormalOrientation.ToNaNAsNull();
entityToUpdate.FailureProbabilityStructureWithErosion = input.FailureProbabilityStructureWithErosion;
if (input.HydraulicBoundaryLocation != null)
{
entityToUpdate.HydraulicLocationEntity = registry.Get(input.HydraulicBoundaryLocation);
}
if (input.ForeshoreProfile != null)
{
entityToUpdate.ForeshoreProfileEntity = registry.Get(input.ForeshoreProfile);
}
entityToUpdate.UseForeshore = Convert.ToByte(input.UseForeshore);
entityToUpdate.UseBreakWater = Convert.ToByte(input.UseBreakWater);
entityToUpdate.BreakWaterType = Convert.ToByte(input.BreakWater.Type);
entityToUpdate.BreakWaterHeight = input.BreakWater.Height.ToNaNAsNull();
entityToUpdate.AllowedLevelIncreaseStorageMean = input.AllowedLevelIncreaseStorage.Mean.ToNaNAsNull();
entityToUpdate.AllowedLevelIncreaseStorageStandardDeviation = input.AllowedLevelIncreaseStorage.StandardDeviation.ToNaNAsNull();
entityToUpdate.StorageStructureAreaMean = input.StorageStructureArea.Mean.ToNaNAsNull();
entityToUpdate.StorageStructureAreaCoefficientOfVariation = input.StorageStructureArea.CoefficientOfVariation.ToNaNAsNull();
entityToUpdate.FlowWidthAtBottomProtectionMean = input.FlowWidthAtBottomProtection.Mean.ToNaNAsNull();
entityToUpdate.FlowWidthAtBottomProtectionStandardDeviation = input.FlowWidthAtBottomProtection.StandardDeviation.ToNaNAsNull();
entityToUpdate.CriticalOvertoppingDischargeMean = input.CriticalOvertoppingDischarge.Mean.ToNaNAsNull();
entityToUpdate.CriticalOvertoppingDischargeCoefficientOfVariation = input.CriticalOvertoppingDischarge.CoefficientOfVariation.ToNaNAsNull();
entityToUpdate.ModelFactorSuperCriticalFlowMean = input.ModelFactorSuperCriticalFlow.Mean.ToNaNAsNull();
entityToUpdate.WidthFlowAperturesMean = input.WidthFlowApertures.Mean.ToNaNAsNull();
entityToUpdate.WidthFlowAperturesStandardDeviation = input.WidthFlowApertures.StandardDeviation.ToNaNAsNull();
entityToUpdate.ShouldIllustrationPointsBeCalculated = Convert.ToByte(input.ShouldIllustrationPointsBeCalculated);
}
private static void SetStructuresOutput(ICollection outputEntities,
StructuresOutput calculationOutput)
where TOutputEntity : IProbabilityAssessmentOutputEntity,
IHasGeneralResultFaultTreeIllustrationPointEntity,
new()
{
ProbabilityAssessmentOutput probabilityAssessmentOutput = calculationOutput.ProbabilityAssessmentOutput;
var outputEntity = probabilityAssessmentOutput.Create();
SetIllustrationPoints(outputEntity, calculationOutput);
outputEntities.Add(outputEntity);
}
private static void SetIllustrationPoints(IHasGeneralResultFaultTreeIllustrationPointEntity outputEntity,
StructuresOutput calculationOutput)
{
if (calculationOutput.HasIllustrationPoints)
{
outputEntity.GeneralResultFaultTreeIllustrationPointEntity =
calculationOutput.GeneralFaultTreeIllustrationPoint
.CreateGeneralResultFaultTreeIllustrationPointEntity();
}
}
#region ClosingStructures
///
/// Creates a based
/// on the information of the .
///
/// The calculation to create a database entity for.
/// The object keeping track of create operations.
/// The index at where resides
/// in its parent container.
/// A new .
/// Thrown when is null.
internal static ClosingStructuresCalculationEntity CreateForClosingStructures(this StructuresCalculation calculation,
PersistenceRegistry registry, int order)
{
if (registry == null)
{
throw new ArgumentNullException(nameof(registry));
}
var entity = new ClosingStructuresCalculationEntity
{
Name = calculation.Name.DeepClone(),
Comments = calculation.Comments.Body.DeepClone(),
Order = order
};
SetInputValues(entity, calculation.InputParameters, registry);
SetOutputEntity(calculation, entity);
registry.Register(entity, calculation);
return entity;
}
private static void SetInputValues(ClosingStructuresCalculationEntity entity, ClosingStructuresInput input,
PersistenceRegistry registry)
{
input.Create(entity, registry);
if (input.Structure != null)
{
entity.ClosingStructureEntity = registry.Get(input.Structure);
}
entity.InflowModelType = Convert.ToByte(input.InflowModelType);
entity.InsideWaterLevelMean = input.InsideWaterLevel.Mean.ToNaNAsNull();
entity.InsideWaterLevelStandardDeviation = input.InsideWaterLevel.StandardDeviation.ToNaNAsNull();
entity.DeviationWaveDirection = input.DeviationWaveDirection.ToNaNAsNull();
entity.DrainCoefficientMean = input.DrainCoefficient.Mean.ToNaNAsNull();
entity.FactorStormDurationOpenStructure = input.FactorStormDurationOpenStructure.ToNaNAsNull();
entity.ThresholdHeightOpenWeirMean = input.ThresholdHeightOpenWeir.Mean.ToNaNAsNull();
entity.ThresholdHeightOpenWeirStandardDeviation = input.ThresholdHeightOpenWeir.StandardDeviation.ToNaNAsNull();
entity.AreaFlowAperturesMean = input.AreaFlowApertures.Mean.ToNaNAsNull();
entity.AreaFlowAperturesStandardDeviation = input.AreaFlowApertures.StandardDeviation.ToNaNAsNull();
entity.FailureProbabilityOpenStructure = input.FailureProbabilityOpenStructure;
entity.FailureProbabilityReparation = input.FailureProbabilityReparation;
entity.IdenticalApertures = input.IdenticalApertures;
entity.LevelCrestStructureNotClosingMean = input.LevelCrestStructureNotClosing.Mean.ToNaNAsNull();
entity.LevelCrestStructureNotClosingStandardDeviation = input.LevelCrestStructureNotClosing.StandardDeviation.ToNaNAsNull();
entity.ProbabilityOrFrequencyOpenStructureBeforeFlooding = input.ProbabilityOrFrequencyOpenStructureBeforeFlooding;
}
private static void SetOutputEntity(StructuresCalculation calculation,
ClosingStructuresCalculationEntity entity)
{
if (calculation.HasOutput)
{
SetStructuresOutput(entity.ClosingStructuresOutputEntities, calculation.Output);
}
}
#endregion
#region HeightStructures
///
/// Creates a based
/// on the information of the .
///
/// The calculation to create a database entity for.
/// The object keeping track of create operations.
/// The index at where resides
/// in its parent container.
/// A new .
/// Thrown when is null.
internal static HeightStructuresCalculationEntity CreateForHeightStructures(this StructuresCalculation calculation,
PersistenceRegistry registry, int order)
{
if (registry == null)
{
throw new ArgumentNullException(nameof(registry));
}
var entity = new HeightStructuresCalculationEntity
{
Name = calculation.Name.DeepClone(),
Comments = calculation.Comments.Body.DeepClone(),
Order = order
};
SetInputValues(entity, calculation.InputParameters, registry);
SetOutputEntity(calculation, entity);
registry.Register(entity, calculation);
return entity;
}
private static void SetInputValues(HeightStructuresCalculationEntity entity, HeightStructuresInput input,
PersistenceRegistry registry)
{
input.Create(entity, registry);
if (input.Structure != null)
{
entity.HeightStructureEntity = registry.Get(input.Structure);
}
entity.LevelCrestStructureMean = input.LevelCrestStructure.Mean.ToNaNAsNull();
entity.LevelCrestStructureStandardDeviation = input.LevelCrestStructure.StandardDeviation.ToNaNAsNull();
entity.DeviationWaveDirection = input.DeviationWaveDirection.ToNaNAsNull();
}
private static void SetOutputEntity(StructuresCalculation calculation,
HeightStructuresCalculationEntity entity)
{
if (calculation.HasOutput)
{
SetStructuresOutput(entity.HeightStructuresOutputEntities, calculation.Output);
}
}
#endregion
#region StabilityPointStructures
///
/// Creates a based
/// on the information of the .
///
/// The calculation to create a database entity for.
/// The object keeping track of create operations.
/// The index at where resides
/// in its parent container.
/// A new .
/// Thrown when is null.
internal static StabilityPointStructuresCalculationEntity CreateForStabilityPointStructures(this StructuresCalculation calculation,
PersistenceRegistry registry, int order)
{
if (registry == null)
{
throw new ArgumentNullException(nameof(registry));
}
var entity = new StabilityPointStructuresCalculationEntity
{
Name = calculation.Name.DeepClone(),
Comments = calculation.Comments.Body.DeepClone(),
Order = order
};
SetInputValues(entity, calculation.InputParameters, registry);
SetOutputEntity(calculation, entity);
registry.Register(entity, calculation);
return entity;
}
private static void SetInputValues(StabilityPointStructuresCalculationEntity entity,
StabilityPointStructuresInput input, PersistenceRegistry registry)
{
input.Create(entity, registry);
if (input.Structure != null)
{
entity.StabilityPointStructureEntity = registry.Get(input.Structure);
}
entity.InsideWaterLevelMean = input.InsideWaterLevel.Mean.ToNaNAsNull();
entity.InsideWaterLevelStandardDeviation = input.InsideWaterLevel.StandardDeviation.ToNaNAsNull();
entity.ThresholdHeightOpenWeirMean = input.ThresholdHeightOpenWeir.Mean.ToNaNAsNull();
entity.ThresholdHeightOpenWeirStandardDeviation = input.ThresholdHeightOpenWeir.StandardDeviation.ToNaNAsNull();
entity.ConstructiveStrengthLinearLoadModelMean = input.ConstructiveStrengthLinearLoadModel.Mean.ToNaNAsNull();
entity.ConstructiveStrengthLinearLoadModelCoefficientOfVariation = input.ConstructiveStrengthLinearLoadModel.CoefficientOfVariation.ToNaNAsNull();
entity.ConstructiveStrengthQuadraticLoadModelMean = input.ConstructiveStrengthQuadraticLoadModel.Mean.ToNaNAsNull();
entity.ConstructiveStrengthQuadraticLoadModelCoefficientOfVariation = input.ConstructiveStrengthQuadraticLoadModel.CoefficientOfVariation.ToNaNAsNull();
entity.BankWidthMean = input.BankWidth.Mean.ToNaNAsNull();
entity.BankWidthStandardDeviation = input.BankWidth.StandardDeviation.ToNaNAsNull();
entity.InsideWaterLevelFailureConstructionMean = input.InsideWaterLevelFailureConstruction.Mean.ToNaNAsNull();
entity.InsideWaterLevelFailureConstructionStandardDeviation = input.InsideWaterLevelFailureConstruction.StandardDeviation.ToNaNAsNull();
entity.EvaluationLevel = input.EvaluationLevel.ToNaNAsNull();
entity.LevelCrestStructureMean = input.LevelCrestStructure.Mean.ToNaNAsNull();
entity.LevelCrestStructureStandardDeviation = input.LevelCrestStructure.StandardDeviation.ToNaNAsNull();
entity.VerticalDistance = input.VerticalDistance.ToNaNAsNull();
entity.FailureProbabilityRepairClosure = input.FailureProbabilityRepairClosure;
entity.FailureCollisionEnergyMean = input.FailureCollisionEnergy.Mean.ToNaNAsNull();
entity.FailureCollisionEnergyCoefficientOfVariation = input.FailureCollisionEnergy.CoefficientOfVariation.ToNaNAsNull();
entity.ShipMassMean = input.ShipMass.Mean.ToNaNAsNull();
entity.ShipMassCoefficientOfVariation = input.ShipMass.CoefficientOfVariation.ToNaNAsNull();
entity.ShipVelocityMean = input.ShipVelocity.Mean.ToNaNAsNull();
entity.ShipVelocityCoefficientOfVariation = input.ShipVelocity.CoefficientOfVariation.ToNaNAsNull();
entity.LevellingCount = input.LevellingCount;
entity.ProbabilityCollisionSecondaryStructure = input.ProbabilityCollisionSecondaryStructure;
entity.FlowVelocityStructureClosableMean = input.FlowVelocityStructureClosable.Mean.ToNaNAsNull();
entity.StabilityLinearLoadModelMean = input.StabilityLinearLoadModel.Mean.ToNaNAsNull();
entity.StabilityLinearLoadModelCoefficientOfVariation = input.StabilityLinearLoadModel.CoefficientOfVariation.ToNaNAsNull();
entity.StabilityQuadraticLoadModelMean = input.StabilityQuadraticLoadModel.Mean.ToNaNAsNull();
entity.StabilityQuadraticLoadModelCoefficientOfVariation = input.StabilityQuadraticLoadModel.CoefficientOfVariation.ToNaNAsNull();
entity.AreaFlowAperturesMean = input.AreaFlowApertures.Mean.ToNaNAsNull();
entity.AreaFlowAperturesStandardDeviation = input.AreaFlowApertures.StandardDeviation.ToNaNAsNull();
entity.InflowModelType = Convert.ToByte(input.InflowModelType);
entity.LoadSchematizationType = Convert.ToByte(input.LoadSchematizationType);
entity.VolumicWeightWater = input.VolumicWeightWater.ToNaNAsNull();
entity.FactorStormDurationOpenStructure = input.FactorStormDurationOpenStructure.ToNaNAsNull();
entity.DrainCoefficientMean = input.DrainCoefficient.Mean.ToNaNAsNull();
}
private static void SetOutputEntity(StructuresCalculation calculation,
StabilityPointStructuresCalculationEntity entity)
{
if (calculation.HasOutput)
{
SetStructuresOutput(entity.StabilityPointStructuresOutputEntities, calculation.Output);
}
}
#endregion
}
}