Index: Ringtoets/ClosingStructures/src/Ringtoets.ClosingStructures.Service/ClosingStructuresCalculationService.cs =================================================================== diff -u -r38cd5da3aefa4ea677c2b1796cbb9b831d41fe3c -r6181b47c13d78023ce936b0037294a94cc1f1708 --- Ringtoets/ClosingStructures/src/Ringtoets.ClosingStructures.Service/ClosingStructuresCalculationService.cs (.../ClosingStructuresCalculationService.cs) (revision 38cd5da3aefa4ea677c2b1796cbb9b831d41fe3c) +++ Ringtoets/ClosingStructures/src/Ringtoets.ClosingStructures.Service/ClosingStructuresCalculationService.cs (.../ClosingStructuresCalculationService.cs) (revision 6181b47c13d78023ce936b0037294a94cc1f1708) @@ -127,7 +127,6 @@ structureInput.StormDuration.Mean, structureInput.StormDuration.CoefficientOfVariation, structureInput.ProbabilityOpenStructureBeforeFlooding, structureInput.ModelFactorSuperCriticalFlow.Mean, structureInput.ModelFactorSuperCriticalFlow.StandardDeviation, - generalInput.ModelFactorSubCriticalFlow.Mean, generalInput.ModelFactorSubCriticalFlow.CoefficientOfVariation, structureInput.ThresholdHeightOpenWeir.Mean, structureInput.ThresholdHeightOpenWeir.StandardDeviation, structureInput.InsideWaterLevel.Mean, structureInput.InsideWaterLevel.StandardDeviation, structureInput.WidthFlowApertures.Mean, structureInput.WidthFlowApertures.StandardDeviation); Index: Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Data/Input/Structures/StructuresStabilityPointFloodedCulvertLinearCalculationInput.cs =================================================================== diff -u -r64d60335b1deab4bafd37f78f3514660cc4afb27 -r6181b47c13d78023ce936b0037294a94cc1f1708 --- Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Data/Input/Structures/StructuresStabilityPointFloodedCulvertLinearCalculationInput.cs (.../StructuresStabilityPointFloodedCulvertLinearCalculationInput.cs) (revision 64d60335b1deab4bafd37f78f3514660cc4afb27) +++ Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Data/Input/Structures/StructuresStabilityPointFloodedCulvertLinearCalculationInput.cs (.../StructuresStabilityPointFloodedCulvertLinearCalculationInput.cs) (revision 6181b47c13d78023ce936b0037294a94cc1f1708) @@ -52,8 +52,6 @@ /// The standard deviation of the crest level of the structure. /// The orientation of the normal of the structure. /// The factor of the storm duration for an open structure. - /// The mean of the model factor sub critical flow. - /// The variation of the model factor sub critical flow. /// The mean of the threshold height open weir. /// The standard deviation of the threshold height open weir. /// The mean of the inside water level at failure of construction. @@ -114,7 +112,6 @@ double levelCrestStructureMean, double levelCrestStructureStandardDeviation, double structureNormalOrientation, double factorStormDurationOpenStructure, - double modelFactorSubCriticalFlowMean, double modelFactorSubCriticalFlowVariation, double thresholdHeightOpenWeirMean, double thresholdHeightOpenWeirStandardDeviation, double insideWaterLevelFailureConstructionMean, double insideWaterLevelFailureConstructionStandardDeviation, double failureProbabilityRepairClosure, @@ -153,7 +150,6 @@ levelCrestStructureMean, levelCrestStructureStandardDeviation, structureNormalOrientation, factorStormDurationOpenStructure, - modelFactorSubCriticalFlowMean, modelFactorSubCriticalFlowVariation, thresholdHeightOpenWeirMean, thresholdHeightOpenWeirStandardDeviation, insideWaterLevelFailureConstructionMean, insideWaterLevelFailureConstructionStandardDeviation, failureProbabilityRepairClosure, Index: Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Data/Input/Structures/StructuresStabilityPointFloodedCulvertQuadraticCalculationInput.cs =================================================================== diff -u -r64d60335b1deab4bafd37f78f3514660cc4afb27 -r6181b47c13d78023ce936b0037294a94cc1f1708 --- Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Data/Input/Structures/StructuresStabilityPointFloodedCulvertQuadraticCalculationInput.cs (.../StructuresStabilityPointFloodedCulvertQuadraticCalculationInput.cs) (revision 64d60335b1deab4bafd37f78f3514660cc4afb27) +++ Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Data/Input/Structures/StructuresStabilityPointFloodedCulvertQuadraticCalculationInput.cs (.../StructuresStabilityPointFloodedCulvertQuadraticCalculationInput.cs) (revision 6181b47c13d78023ce936b0037294a94cc1f1708) @@ -52,8 +52,6 @@ /// The standard deviation of the crest level of the structure. /// The orientation of the normal of the structure. /// The factor of the storm duration for an open structure. - /// The mean of the model factor sub critical flow. - /// The variation of the model factor sub critical flow. /// The mean of the threshold height open weir. /// The standard deviation of the threshold height open weir. /// The mean of the inside water level at failure of construction. @@ -114,7 +112,6 @@ double levelCrestStructureMean, double levelCrestStructureStandardDeviation, double structureNormalOrientation, double factorStormDurationOpenStructure, - double modelFactorSubCriticalFlowMean, double modelFactorSubCriticalFlowVariation, double thresholdHeightOpenWeirMean, double thresholdHeightOpenWeirStandardDeviation, double insideWaterLevelFailureConstructionMean, double insideWaterLevelFailureConstructionStandardDeviation, double failureProbabilityRepairClosure, @@ -153,7 +150,6 @@ levelCrestStructureMean, levelCrestStructureStandardDeviation, structureNormalOrientation, factorStormDurationOpenStructure, - modelFactorSubCriticalFlowMean, modelFactorSubCriticalFlowVariation, thresholdHeightOpenWeirMean, thresholdHeightOpenWeirStandardDeviation, insideWaterLevelFailureConstructionMean, insideWaterLevelFailureConstructionStandardDeviation, failureProbabilityRepairClosure, Index: Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Data/Input/Structures/StructuresStabilityPointLowSillLinearCalculationInput.cs =================================================================== diff -u -r64d60335b1deab4bafd37f78f3514660cc4afb27 -r6181b47c13d78023ce936b0037294a94cc1f1708 --- Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Data/Input/Structures/StructuresStabilityPointLowSillLinearCalculationInput.cs (.../StructuresStabilityPointLowSillLinearCalculationInput.cs) (revision 64d60335b1deab4bafd37f78f3514660cc4afb27) +++ Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Data/Input/Structures/StructuresStabilityPointLowSillLinearCalculationInput.cs (.../StructuresStabilityPointLowSillLinearCalculationInput.cs) (revision 6181b47c13d78023ce936b0037294a94cc1f1708) @@ -52,8 +52,6 @@ /// The standard deviation of the crest level of the structure. /// The orientation of the normal of the structure. /// The factor of the storm duration for an open structure. - /// The mean of the model factor sub critical flow. - /// The variation of the model factor sub critical flow. /// The mean of the threshold height open weir. /// The standard deviation of the threshold height open weir. /// The mean of the inside water level at failure of construction. @@ -114,7 +112,6 @@ double levelCrestStructureMean, double levelCrestStructureStandardDeviation, double structureNormalOrientation, double factorStormDurationOpenStructure, - double modelFactorSubCriticalFlowMean, double modelFactorSubCriticalFlowVariation, double thresholdHeightOpenWeirMean, double thresholdHeightOpenWeirStandardDeviation, double insideWaterLevelFailureConstructionMean, double insideWaterLevelFailureConstructionStandardDeviation, double failureProbabilityRepairClosure, @@ -153,7 +150,6 @@ levelCrestStructureMean, levelCrestStructureStandardDeviation, structureNormalOrientation, factorStormDurationOpenStructure, - modelFactorSubCriticalFlowMean, modelFactorSubCriticalFlowVariation, thresholdHeightOpenWeirMean, thresholdHeightOpenWeirStandardDeviation, insideWaterLevelFailureConstructionMean, insideWaterLevelFailureConstructionStandardDeviation, failureProbabilityRepairClosure, Index: Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Data/Input/Structures/StructuresStabilityPointLowSillQuadraticCalculationInput.cs =================================================================== diff -u -r64d60335b1deab4bafd37f78f3514660cc4afb27 -r6181b47c13d78023ce936b0037294a94cc1f1708 --- Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Data/Input/Structures/StructuresStabilityPointLowSillQuadraticCalculationInput.cs (.../StructuresStabilityPointLowSillQuadraticCalculationInput.cs) (revision 64d60335b1deab4bafd37f78f3514660cc4afb27) +++ Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Data/Input/Structures/StructuresStabilityPointLowSillQuadraticCalculationInput.cs (.../StructuresStabilityPointLowSillQuadraticCalculationInput.cs) (revision 6181b47c13d78023ce936b0037294a94cc1f1708) @@ -52,8 +52,6 @@ /// The standard deviation of the crest level of the structure. /// The orientation of the normal of the structure. /// The factor of the storm duration for an open structure. - /// The mean of the model factor sub critical flow. - /// The variation of the model factor sub critical flow. /// The mean of the threshold height open weir. /// The standard deviation of the threshold height open weir. /// The mean of the inside water level at failure of construction. @@ -114,7 +112,6 @@ double levelCrestStructureMean, double levelCrestStructureStandardDeviation, double structureNormalOrientation, double factorStormDurationOpenStructure, - double modelFactorSubCriticalFlowMean, double modelFactorSubCriticalFlowVariation, double thresholdHeightOpenWeirMean, double thresholdHeightOpenWeirStandardDeviation, double insideWaterLevelFailureConstructionMean, double insideWaterLevelFailureConstructionStandardDeviation, double failureProbabilityRepairClosure, @@ -153,7 +150,6 @@ levelCrestStructureMean, levelCrestStructureStandardDeviation, structureNormalOrientation, factorStormDurationOpenStructure, - modelFactorSubCriticalFlowMean, modelFactorSubCriticalFlowVariation, thresholdHeightOpenWeirMean, thresholdHeightOpenWeirStandardDeviation, insideWaterLevelFailureConstructionMean, insideWaterLevelFailureConstructionStandardDeviation, failureProbabilityRepairClosure, Index: Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Service/StabilityPointStructuresCalculationService.cs =================================================================== diff -u -re3ebc9635d55057cb242e9a5b4f650b9c87737a8 -r6181b47c13d78023ce936b0037294a94cc1f1708 --- Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Service/StabilityPointStructuresCalculationService.cs (.../StabilityPointStructuresCalculationService.cs) (revision e3ebc9635d55057cb242e9a5b4f650b9c87737a8) +++ Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Service/StabilityPointStructuresCalculationService.cs (.../StabilityPointStructuresCalculationService.cs) (revision 6181b47c13d78023ce936b0037294a94cc1f1708) @@ -162,8 +162,6 @@ structureInput.LevelCrestStructure.StandardDeviation, structureInput.StructureNormalOrientation, structureInput.FactorStormDurationOpenStructure, - generalInput.ModelFactorSubCriticalFlow.Mean, - generalInput.ModelFactorSubCriticalFlow.CoefficientOfVariation, structureInput.ThresholdHeightOpenWeir.Mean, structureInput.ThresholdHeightOpenWeir.StandardDeviation, structureInput.InsideWaterLevelFailureConstruction.Mean, @@ -234,8 +232,6 @@ structureInput.LevelCrestStructure.StandardDeviation, structureInput.StructureNormalOrientation, structureInput.FactorStormDurationOpenStructure, - generalInput.ModelFactorSubCriticalFlow.Mean, - generalInput.ModelFactorSubCriticalFlow.CoefficientOfVariation, structureInput.ThresholdHeightOpenWeir.Mean, structureInput.ThresholdHeightOpenWeir.StandardDeviation, structureInput.InsideWaterLevelFailureConstruction.Mean, @@ -304,8 +300,6 @@ structureInput.LevelCrestStructure.StandardDeviation, structureInput.StructureNormalOrientation, structureInput.FactorStormDurationOpenStructure, - generalInput.ModelFactorSubCriticalFlow.Mean, - generalInput.ModelFactorSubCriticalFlow.CoefficientOfVariation, structureInput.ThresholdHeightOpenWeir.Mean, structureInput.ThresholdHeightOpenWeir.StandardDeviation, structureInput.InsideWaterLevelFailureConstruction.Mean, @@ -374,8 +368,6 @@ structureInput.LevelCrestStructure.StandardDeviation, structureInput.StructureNormalOrientation, structureInput.FactorStormDurationOpenStructure, - generalInput.ModelFactorSubCriticalFlow.Mean, - generalInput.ModelFactorSubCriticalFlow.CoefficientOfVariation, structureInput.ThresholdHeightOpenWeir.Mean, structureInput.ThresholdHeightOpenWeir.StandardDeviation, structureInput.InsideWaterLevelFailureConstruction.Mean,