Index: Ringtoets/Piping/src/Ringtoets.Piping.Data/GeneralPipingInput.cs =================================================================== diff -u -r81fa8a9bf3bd503cbd280e88b8f6037a840cff12 -r3cf4d4c65cf2ce285bdeb71162cf3b0a79cb3742 --- Ringtoets/Piping/src/Ringtoets.Piping.Data/GeneralPipingInput.cs (.../GeneralPipingInput.cs) (revision 81fa8a9bf3bd503cbd280e88b8f6037a840cff12) +++ Ringtoets/Piping/src/Ringtoets.Piping.Data/GeneralPipingInput.cs (.../GeneralPipingInput.cs) (revision 3cf4d4c65cf2ce285bdeb71162cf3b0a79cb3742) @@ -56,7 +56,7 @@ /// /// Gets the critical exit gradient for heave. /// - public double CriticalHeaveGradient { get; private set; } + public double CriticalHeaveGradient { get; } #endregion @@ -98,12 +98,12 @@ /// /// Gets the calculation value used to account for uncertainty in the model for uplift. /// - public double UpliftModelFactor { get; private set; } + public double UpliftModelFactor { get; } /// /// Gets the calculation value used to account for uncertainty in the model for Sellmeijer. /// - public double SellmeijerModelFactor { get; private set; } + public double SellmeijerModelFactor { get; } #endregion @@ -125,38 +125,38 @@ /// /// Gets the White's drag coefficient. /// - public double WhitesDragCoefficient { get; private set; } + public double WhitesDragCoefficient { get; } /// /// Gets the angle of the force balance representing the amount in which sand /// grains resist rolling. /// [°] /// - public double BeddingAngle { get; private set; } + public double BeddingAngle { get; } /// /// Gets the kinematic viscosity of water at 10 °C. /// [m²/s] /// - public double WaterKinematicViscosity { get; private set; } + public double WaterKinematicViscosity { get; } /// /// Gets the gravitational acceleration. /// [m/s²] /// - public double Gravity { get; private set; } + public double Gravity { get; } /// /// Gets the mean diameter of small scale tests applied to different kinds of sand, /// on which the formula of Sellmeijer has been fit. /// [m] /// - public double MeanDiameter70 { get; private set; } + public double MeanDiameter70 { get; } /// /// Gets the reduction factor Sellmeijer. /// - public double SellmeijerReductionFactor { get; private set; } + public double SellmeijerReductionFactor { get; } #endregion }