Index: Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Data/HeightStructuresInput.cs
===================================================================
diff -u -rf5ac9de8b45cef4515fa7a051c5af54446f96712 -r2dc3f17db9958ee4146f90efd7d38eb335ef822f
--- Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Data/HeightStructuresInput.cs (.../HeightStructuresInput.cs) (revision f5ac9de8b45cef4515fa7a051c5af54446f96712)
+++ Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Data/HeightStructuresInput.cs (.../HeightStructuresInput.cs) (revision 2dc3f17db9958ee4146f90efd7d38eb335ef822f)
@@ -35,7 +35,7 @@
{
private readonly NormalDistribution levelOfCrestOfStructure;
private readonly GeneralHeightStructuresInput generalInputParameters;
- private readonly NormalDistribution modelfactorOvertoppingSuperCriticalFlow;
+ private readonly NormalDistribution modelFactorOvertoppingSuperCriticalFlow;
private readonly LognormalDistribution allowableIncreaseOfLevelForStorage;
private readonly LognormalDistribution storageStructureArea;
private readonly LognormalDistribution flowWidthAtBottomProtection;
@@ -66,7 +66,7 @@
OrientationOfTheNormalOfTheStructure = new RoundedDouble(2);
- modelfactorOvertoppingSuperCriticalFlow = new NormalDistribution(2)
+ modelFactorOvertoppingSuperCriticalFlow = new NormalDistribution(2)
{
Mean = new RoundedDouble(2, 1.1),
StandardDeviation = new RoundedDouble(2, 0.03)
@@ -110,15 +110,15 @@
///
/// Gets or sets the model factor overtopping critical flow.
///
- public NormalDistribution ModelfactorOvertoppingSuperCriticalFlow
+ public NormalDistribution ModelFactorOvertoppingSuperCriticalFlow
{
get
{
- return modelfactorOvertoppingSuperCriticalFlow;
+ return modelFactorOvertoppingSuperCriticalFlow;
}
set
{
- modelfactorOvertoppingSuperCriticalFlow.Mean = value.Mean.ToPrecision(modelfactorOvertoppingSuperCriticalFlow.Mean.NumberOfDecimalPlaces);
+ modelFactorOvertoppingSuperCriticalFlow.Mean = value.Mean.ToPrecision(modelFactorOvertoppingSuperCriticalFlow.Mean.NumberOfDecimalPlaces);
}
}
@@ -309,11 +309,11 @@
///
/// Gets the model factor overtopping flow.
///
- public LognormalDistribution ModelfactorOvertoppingFlow
+ public LognormalDistribution ModelFactorOvertoppingFlow
{
get
{
- return generalInputParameters.ModelfactorOvertoppingFlow;
+ return generalInputParameters.ModelFactorOvertoppingFlow;
}
}