Index: Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Data/GrassCoverErosionInwardsInput.cs =================================================================== diff -u -r392c4a63ebfaee062d8dc611ecf41881ac1fe3a5 -re3912b8e6d94f1d0e9c765ba8ec18ed29e8484db --- Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Data/GrassCoverErosionInwardsInput.cs (.../GrassCoverErosionInwardsInput.cs) (revision 392c4a63ebfaee062d8dc611ecf41881ac1fe3a5) +++ Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Data/GrassCoverErosionInwardsInput.cs (.../GrassCoverErosionInwardsInput.cs) (revision e3912b8e6d94f1d0e9c765ba8ec18ed29e8484db) @@ -36,8 +36,8 @@ public class GrassCoverErosionInwardsInput : Observable, ICalculationInput { private readonly LognormalDistribution criticalFlowRate; - private RoundedDouble orientation; private readonly GeneralGrassCoverErosionInwardsInput generalInputParameters; + private RoundedDouble orientation; /// /// Creates a new instance of . @@ -155,6 +155,17 @@ #region General input parameters /// + /// Gets the model factor critical overtopping. + /// + public double Mqc + { + get + { + return generalInputParameters.Mqc; + } + } + + /// /// Gets the factor fb variable. /// public NormalDistribution Fb @@ -177,13 +188,13 @@ } /// - /// Gets the factor fshallow variable. + /// Gets the model factor overtopping. /// - public NormalDistribution Fshallow + public double Mqo { get { - return generalInputParameters.Fshallow; + return generalInputParameters.Mqo; } } @@ -199,27 +210,16 @@ } /// - /// Gets the model factor critical overtopping. + /// Gets the factor fshallow variable. /// - public double Mqc + public NormalDistribution Fshallow { get { - return generalInputParameters.Mqc; + return generalInputParameters.Fshallow; } } - /// - /// Gets the model factor overtopping. - /// - public double Mqo - { - get - { - return generalInputParameters.Mqo; - } - } - #endregion } } \ No newline at end of file