Index: Ringtoets/Piping/src/Ringtoets.Piping.Forms/PropertyClasses/PipingInputContextProperties.cs =================================================================== diff -u -r8ca6a4ce40d75a96784c6ce8839e06e0b11052da -rf98409152d5ccbaf5429791f7e3042d7884a050d --- Ringtoets/Piping/src/Ringtoets.Piping.Forms/PropertyClasses/PipingInputContextProperties.cs (.../PipingInputContextProperties.cs) (revision 8ca6a4ce40d75a96784c6ce8839e06e0b11052da) +++ Ringtoets/Piping/src/Ringtoets.Piping.Forms/PropertyClasses/PipingInputContextProperties.cs (.../PipingInputContextProperties.cs) (revision f98409152d5ccbaf5429791f7e3042d7884a050d) @@ -42,27 +42,6 @@ /// public class PipingInputContextProperties : ObjectProperties { - #region Model Settings - - [TypeConverter(typeof(LogNormalDistributionDesignVariableTypeConverter))] - [ResourcesCategory(typeof(Resources), "Categories_ModelSettings")] - [ResourcesDisplayName(typeof(Resources), "PipingInput_DampingFactorExit_DisplayName")] - [ResourcesDescription(typeof(Resources), "PipingInput_DampingFactorExit_Description")] - public DesignVariable DampingFactorExit - { - get - { - return PipingSemiProbabilisticDesignValueFactory.GetDampingFactorExit(data.WrappedData); - } - set - { - data.WrappedData.DampingFactorExit = value.Distribution; - data.WrappedData.NotifyObservers(); - } - } - - #endregion - /// /// Gets the available surface lines on . /// @@ -136,6 +115,23 @@ } } + [TypeConverter(typeof(LogNormalDistributionDesignVariableTypeConverter))] + [ResourcesCategory(typeof(Resources), "Categories_HydraulicData")] + [ResourcesDisplayName(typeof(Resources), "PipingInput_DampingFactorExit_DisplayName")] + [ResourcesDescription(typeof(Resources), "PipingInput_DampingFactorExit_Description")] + public DesignVariable DampingFactorExit + { + get + { + return PipingSemiProbabilisticDesignValueFactory.GetDampingFactorExit(data.WrappedData); + } + set + { + data.WrappedData.DampingFactorExit = value.Distribution; + data.WrappedData.NotifyObservers(); + } + } + [TypeConverter(typeof(NormalDistributionDesignVariableTypeConverter))] [ResourcesCategory(typeof(Resources), "Categories_HydraulicData")] [ResourcesDisplayName(typeof(Resources), "PipingInput_PhreaticLevelExit_DisplayName")]