Index: Ringtoets/ClosingStructures/src/Ringtoets.ClosingStructures.Data/ClosingStructuresInput.cs =================================================================== diff -u -r0b299af3d5f6cc45062d17b78316c8e73a306344 -rb44bee77c8e1e8d1e92168b7b42edd2eff8c9689 --- Ringtoets/ClosingStructures/src/Ringtoets.ClosingStructures.Data/ClosingStructuresInput.cs (.../ClosingStructuresInput.cs) (revision 0b299af3d5f6cc45062d17b78316c8e73a306344) +++ Ringtoets/ClosingStructures/src/Ringtoets.ClosingStructures.Data/ClosingStructuresInput.cs (.../ClosingStructuresInput.cs) (revision b44bee77c8e1e8d1e92168b7b42edd2eff8c9689) @@ -145,6 +145,7 @@ var clone = (ClosingStructuresInput) base.Clone(); clone.thresholdHeightOpenWeir = (NormalDistribution) ThresholdHeightOpenWeir.Clone(); + clone.modelFactorSuperCriticalFlow = (NormalDistribution) ModelFactorSuperCriticalFlow.Clone(); clone.drainCoefficient = (NormalDistribution) DrainCoefficient.Clone(); clone.areaFlowApertures = (LogNormalDistribution) AreaFlowApertures.Clone(); clone.levelCrestStructureNotClosing = (NormalDistribution) LevelCrestStructureNotClosing.Clone(); Index: Ringtoets/Common/src/Ringtoets.Common.Data/Structures/StructuresInputBase.cs =================================================================== diff -u -r0b299af3d5f6cc45062d17b78316c8e73a306344 -rb44bee77c8e1e8d1e92168b7b42edd2eff8c9689 --- Ringtoets/Common/src/Ringtoets.Common.Data/Structures/StructuresInputBase.cs (.../StructuresInputBase.cs) (revision 0b299af3d5f6cc45062d17b78316c8e73a306344) +++ Ringtoets/Common/src/Ringtoets.Common.Data/Structures/StructuresInputBase.cs (.../StructuresInputBase.cs) (revision b44bee77c8e1e8d1e92168b7b42edd2eff8c9689) @@ -126,7 +126,6 @@ { var clone = (StructuresInputBase) base.Clone(); - clone.modelFactorSuperCriticalFlow = (NormalDistribution) ModelFactorSuperCriticalFlow.Clone(); clone.allowedLevelIncreaseStorage = (LogNormalDistribution) AllowedLevelIncreaseStorage.Clone(); clone.storageStructureArea = (VariationCoefficientLogNormalDistribution) StorageStructureArea.Clone(); clone.flowWidthAtBottomProtection = (LogNormalDistribution) FlowWidthAtBottomProtection.Clone(); Index: Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Data/HeightStructuresInput.cs =================================================================== diff -u -r0b299af3d5f6cc45062d17b78316c8e73a306344 -rb44bee77c8e1e8d1e92168b7b42edd2eff8c9689 --- Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Data/HeightStructuresInput.cs (.../HeightStructuresInput.cs) (revision 0b299af3d5f6cc45062d17b78316c8e73a306344) +++ Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Data/HeightStructuresInput.cs (.../HeightStructuresInput.cs) (revision b44bee77c8e1e8d1e92168b7b42edd2eff8c9689) @@ -146,6 +146,7 @@ { var clone = (HeightStructuresInput) base.Clone(); + clone.modelFactorSuperCriticalFlow = (NormalDistribution) ModelFactorSuperCriticalFlow.Clone(); clone.levelCrestStructure = (NormalDistribution) LevelCrestStructure.Clone(); return clone;