Index: Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Data/StabilityPointStructure.cs
===================================================================
diff -u -ra897a13f58674fa253d6502c42f0b1c7a762c160 -r9e3639e810a22019da1a9fdf5aa5c433a43520c1
--- Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Data/StabilityPointStructure.cs (.../StabilityPointStructure.cs) (revision a897a13f58674fa253d6502c42f0b1c7a762c160)
+++ Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Data/StabilityPointStructure.cs (.../StabilityPointStructure.cs) (revision 9e3639e810a22019da1a9fdf5aa5c433a43520c1)
@@ -82,11 +82,11 @@
/// The coefficient of variation of the stability properties of the quadratic model of the stability point structure.
/// The mean of the area of the flow aperture of the stability point structure.
/// The standard deviation of the area of the flow aperture of the stability point structure.
- /// The type of stability point structure.
+ /// The type of stability point structure inflow model.
/// Thrown when or is null
/// , empty or consists of whitespace.
/// Thrown when is null.
- /// When any stochastic variable parameter is out if its valid domain.
+ /// When any stochastic variable parameter is out of its valid domain.
public StabilityPointStructure(string name, string id, Point2D location,
double structureNormalOrientation,
double storageStructureAreaMean, double storageStructureAreaCoefficientOfVariation,
@@ -113,7 +113,7 @@
double stabilityLinearModelMean, double stabilityLinearModelCoefficientOfVariation,
double stabilityQuadraticModelMean, double stabilityQuadraticModelCoefficientOfVariation,
double areaFlowAperturesMean, double areaFlowAperturesStandardDeviation,
- StabilityPointStructureType inflowModel
+ StabilityPointStructureInflowModelType inflowModelType
)
: base(name, id, location, structureNormalOrientation)
{
@@ -217,7 +217,7 @@
Mean = (RoundedDouble) areaFlowAperturesMean,
StandardDeviation = (RoundedDouble) areaFlowAperturesStandardDeviation
};
- InflowModel = inflowModel;
+ InflowModelType = inflowModelType;
}
///
@@ -341,8 +341,8 @@
public LogNormalDistribution AreaFlowApertures { get; private set; }
///
- /// Gets the type of stability point structure.
+ /// Gets the type of stability point structure inflow model.
///
- public StabilityPointStructureType InflowModel { get; private set; }
+ public StabilityPointStructureInflowModelType InflowModelType { get; private set; }
}
}
\ No newline at end of file