Index: Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Data/GrassCoverErosionInwardsInput.cs =================================================================== diff -u -re3912b8e6d94f1d0e9c765ba8ec18ed29e8484db -r2a3b5c8305492fff0fa77b78fa3b2f5e9f8091a5 --- Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Data/GrassCoverErosionInwardsInput.cs (.../GrassCoverErosionInwardsInput.cs) (revision e3912b8e6d94f1d0e9c765ba8ec18ed29e8484db) +++ Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Data/GrassCoverErosionInwardsInput.cs (.../GrassCoverErosionInwardsInput.cs) (revision 2a3b5c8305492fff0fa77b78fa3b2f5e9f8091a5) @@ -157,66 +157,66 @@ /// /// Gets the model factor critical overtopping. /// - public double Mqc + public double CriticalOvertoppingModelFactor { get { - return generalInputParameters.Mqc; + return generalInputParameters.CriticalOvertoppingModelFactor; } } /// /// Gets the factor fb variable. /// - public NormalDistribution Fb + public NormalDistribution FbFactor { get { - return generalInputParameters.Fb; + return generalInputParameters.FbFactor; } } /// /// Gets the factor fn variable. /// - public NormalDistribution Fn + public NormalDistribution FnFactor { get { - return generalInputParameters.Fn; + return generalInputParameters.FnFactor; } } /// /// Gets the model factor overtopping. /// - public double Mqo + public double OvertoppingModelFactor { get { - return generalInputParameters.Mqo; + return generalInputParameters.OvertoppingModelFactor; } } /// /// Gets the factor mz2 (or frunup) variable. /// - public NormalDistribution Mz2 + public NormalDistribution FrunupModelFactor { get { - return generalInputParameters.Mz2; + return generalInputParameters.FrunupModelFactor; } } /// /// Gets the factor fshallow variable. /// - public NormalDistribution Fshallow + public NormalDistribution FshallowModelFactor { get { - return generalInputParameters.Fshallow; + return generalInputParameters.FshallowModelFactor; } }