Index: Ringtoets/ClosingStructures/src/Ringtoets.ClosingStructures.Forms/PropertyClasses/ClosingStructuresInputContextProperties.cs =================================================================== diff -u -rb12f00efd92f6777faae2c4e00f70e10c1930d96 -r32ca5355a56fe0862064a50c1b94bf02b3bf1ebd --- Ringtoets/ClosingStructures/src/Ringtoets.ClosingStructures.Forms/PropertyClasses/ClosingStructuresInputContextProperties.cs (.../ClosingStructuresInputContextProperties.cs) (revision b12f00efd92f6777faae2c4e00f70e10c1930d96) +++ Ringtoets/ClosingStructures/src/Ringtoets.ClosingStructures.Forms/PropertyClasses/ClosingStructuresInputContextProperties.cs (.../ClosingStructuresInputContextProperties.cs) (revision 32ca5355a56fe0862064a50c1b94bf02b3bf1ebd) @@ -205,11 +205,19 @@ #region Model factors [DynamicVisible] - public override NormalDistributionProperties ModelFactorSuperCriticalFlow + [PropertyOrder(modelFactorSuperCriticalFlowPropertyIndex)] + [TypeConverter(typeof(ExpandableObjectConverter))] + [ResourcesCategory(typeof(RingtoetsCommonFormsResources), nameof(RingtoetsCommonFormsResources.Categories_ModelSettings))] + [ResourcesDisplayName(typeof(RingtoetsCommonFormsResources), nameof(RingtoetsCommonFormsResources.Structure_ModelFactorSuperCriticalFlow_DisplayName))] + [ResourcesDescription(typeof(RingtoetsCommonFormsResources), nameof(RingtoetsCommonFormsResources.Structure_ModelFactorSuperCriticalFlow_Description))] + public virtual NormalDistributionProperties ModelFactorSuperCriticalFlow { get { - return base.ModelFactorSuperCriticalFlow; + return new NormalDistributionProperties( + DistributionPropertiesReadOnly.StandardDeviation, + data.WrappedData.ModelFactorSuperCriticalFlow, + PropertyChangeHandler); } } Index: Ringtoets/Common/src/Ringtoets.Common.Forms/PropertyClasses/StructuresInputBaseProperties.cs =================================================================== diff -u -r3c832ffce74b527eb1d588aa722840f0a80330b7 -r32ca5355a56fe0862064a50c1b94bf02b3bf1ebd --- Ringtoets/Common/src/Ringtoets.Common.Forms/PropertyClasses/StructuresInputBaseProperties.cs (.../StructuresInputBaseProperties.cs) (revision 3c832ffce74b527eb1d588aa722840f0a80330b7) +++ Ringtoets/Common/src/Ringtoets.Common.Forms/PropertyClasses/StructuresInputBaseProperties.cs (.../StructuresInputBaseProperties.cs) (revision 32ca5355a56fe0862064a50c1b94bf02b3bf1ebd) @@ -138,26 +138,6 @@ }; } - #region Model factors - - [DynamicPropertyOrder] - [TypeConverter(typeof(ExpandableObjectConverter))] - [ResourcesCategory(typeof(Resources), nameof(Resources.Categories_ModelSettings))] - [ResourcesDisplayName(typeof(Resources), nameof(Resources.Structure_ModelFactorSuperCriticalFlow_DisplayName))] - [ResourcesDescription(typeof(Resources), nameof(Resources.Structure_ModelFactorSuperCriticalFlow_Description))] - public virtual NormalDistributionProperties ModelFactorSuperCriticalFlow - { - get - { - return new NormalDistributionProperties( - DistributionPropertiesReadOnly.StandardDeviation, - data.WrappedData.ModelFactorSuperCriticalFlow, - PropertyChangeHandler); - } - } - - #endregion - #region Output Settings [ResourcesCategory(typeof(Resources), nameof(Resources.Categories_OutputSettings))] Index: Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Forms/PropertyClasses/HeightStructuresInputContextProperties.cs =================================================================== diff -u -rfd9e1dd4f143af493965eea4d564c087081fb7f7 -r32ca5355a56fe0862064a50c1b94bf02b3bf1ebd --- Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Forms/PropertyClasses/HeightStructuresInputContextProperties.cs (.../HeightStructuresInputContextProperties.cs) (revision fd9e1dd4f143af493965eea4d564c087081fb7f7) +++ Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Forms/PropertyClasses/HeightStructuresInputContextProperties.cs (.../HeightStructuresInputContextProperties.cs) (revision 32ca5355a56fe0862064a50c1b94bf02b3bf1ebd) @@ -86,6 +86,27 @@ StormDurationPropertyIndex = stormDurationPropertyIndex }, propertyChangeHandler) {} + #region Model factors + + [DynamicVisible] + [PropertyOrder(modelFactorSuperCriticalFlowPropertyIndex)] + [TypeConverter(typeof(ExpandableObjectConverter))] + [ResourcesCategory(typeof(RingtoetsCommonFormsResources), nameof(RingtoetsCommonFormsResources.Categories_ModelSettings))] + [ResourcesDisplayName(typeof(RingtoetsCommonFormsResources), nameof(RingtoetsCommonFormsResources.Structure_ModelFactorSuperCriticalFlow_DisplayName))] + [ResourcesDescription(typeof(RingtoetsCommonFormsResources), nameof(RingtoetsCommonFormsResources.Structure_ModelFactorSuperCriticalFlow_Description))] + public virtual NormalDistributionProperties ModelFactorSuperCriticalFlow + { + get + { + return new NormalDistributionProperties( + DistributionPropertiesReadOnly.StandardDeviation, + data.WrappedData.ModelFactorSuperCriticalFlow, + PropertyChangeHandler); + } + } + + #endregion + #region Schematization [PropertyOrder(levelCrestStructurePropertyIndex)]