Index: Ringtoets/ClosingStructures/src/Ringtoets.ClosingStructures.Data/ClosingStructure.cs =================================================================== diff -u -r2698972311ca90c3af1171c554c4dec237e34111 -rfcf1d7a6d59fa076021024f731cfa2d9ce4c5648 --- Ringtoets/ClosingStructures/src/Ringtoets.ClosingStructures.Data/ClosingStructure.cs (.../ClosingStructure.cs) (revision 2698972311ca90c3af1171c554c4dec237e34111) +++ Ringtoets/ClosingStructures/src/Ringtoets.ClosingStructures.Data/ClosingStructure.cs (.../ClosingStructure.cs) (revision fcf1d7a6d59fa076021024f731cfa2d9ce4c5648) @@ -20,7 +20,6 @@ // All rights reserved. using System; -using Core.Common.Base.Data; using Ringtoets.Common.Data; using Ringtoets.Common.Data.Probabilistics; using BaseConstructionProperties = Ringtoets.Common.Data.StructureBase.ConstructionProperties; @@ -186,56 +185,67 @@ /// /// Gets the storage area of the closing structure. + /// [m^2] /// public VariationCoefficientLogNormalDistribution StorageStructureArea { get; private set; } /// /// Gets the allowed increase of level for storage of the closing structure. + /// [m] /// public LogNormalDistribution AllowedLevelIncreaseStorage { get; private set; } /// /// Gets the width of the flow apertures of the closing structure. + /// [m] /// public VariationCoefficientNormalDistribution WidthFlowApertures { get; private set; } /// /// Gets the crest level of the opened closing structure. + /// [m+NAP] /// public NormalDistribution LevelCrestStructureNotClosing { get; private set; } /// /// Gets the interior water level of the closing structure. + /// [m+NAP] /// public NormalDistribution InsideWaterLevel { get; private set; } /// /// Gets the threshold height of the opened closing structure. + /// [m+NAP] /// public NormalDistribution ThresholdHeightOpenWeir { get; private set; } /// /// Gets the area of the flow aperture of the closing structure. + /// [m^2] /// public LogNormalDistribution AreaFlowApertures { get; private set; } /// /// Gets the critical overtopping discharge of the closing structure. + /// [m^2/s] /// public VariationCoefficientLogNormalDistribution CriticalOvertoppingDischarge { get; private set; } /// /// Gets the flow width of the closing structure at the bottom protection. + /// [m] /// public LogNormalDistribution FlowWidthAtBottomProtection { get; private set; } /// /// Gets the probability of the closing structure being open before flooding. + /// [1/year] /// public double ProbabilityOpenStructureBeforeFlooding { get; set; } /// /// Gets the probability of failing to close the closing structure. + /// [1/year] /// public double FailureProbabilityOpenStructure { get; set; } @@ -246,6 +256,7 @@ /// /// Gets the probability of failing to repair a failed closure of the closing structure. + /// [1/year] /// public double FailureProbabilityReparation { get; set; } Index: Ringtoets/Common/src/Ringtoets.Common.IO/Structures/StructureFilesKeywords.cs =================================================================== diff -u -rae381aa4c51be4fc3da292994aa14fd429b58a33 -rfcf1d7a6d59fa076021024f731cfa2d9ce4c5648 --- Ringtoets/Common/src/Ringtoets.Common.IO/Structures/StructureFilesKeywords.cs (.../StructureFilesKeywords.cs) (revision ae381aa4c51be4fc3da292994aa14fd429b58a33) +++ Ringtoets/Common/src/Ringtoets.Common.IO/Structures/StructureFilesKeywords.cs (.../StructureFilesKeywords.cs) (revision fcf1d7a6d59fa076021024f731cfa2d9ce4c5648) @@ -29,42 +29,50 @@ #region Height Structure Keywords /// - /// The first height structure parameter keyword. + /// The orientation of the structure, relative to north. + /// [degrees] /// public const string HeightStructureParameterKeyword1 = "KW_HOOGTE1"; /// - /// The second height structure parameter keyword. + /// The crest level of the height structure. + /// [m+NAP] /// public const string HeightStructureParameterKeyword2 = "KW_HOOGTE2"; /// - /// The third height structure parameter keyword. + /// The flow width of the height structure at the bottom protection. + /// [m] /// public const string HeightStructureParameterKeyword3 = "KW_HOOGTE3"; /// - /// The fourth height structure parameter keyword. + /// The critical overtopping discharge of the height structure. + /// [m^2/s] /// public const string HeightStructureParameterKeyword4 = "KW_HOOGTE4"; /// - /// The fifth height structure parameter keyword. + /// The flow apertures width of the height structure. + /// [m] /// public const string HeightStructureParameterKeyword5 = "KW_HOOGTE5"; /// - /// The sixth height structure parameter keyword. + /// The failure probability of the height structure, given erosion. + /// [1/year] /// public const string HeightStructureParameterKeyword6 = "KW_HOOGTE6"; /// - /// The seventh height structure parameter keyword. + /// The storage area of the height structure. + /// [m^2] /// public const string HeightStructureParameterKeyword7 = "KW_HOOGTE7"; /// - /// The eighth height structure parameter keyword. + /// The allowed increase of level for storage of the height structure. + /// [m] /// public const string HeightStructureParameterKeyword8 = "KW_HOOGTE8"; @@ -73,77 +81,90 @@ #region Closing Structure Keywords /// - /// The first closing structure parameter keyword. + /// The storage area of the closing structure. + /// [m^2] /// public const string ClosingStructureParameterKeyword1 = "KW_BETSLUIT1"; /// - /// The second closing structure parameter keyword. + /// The allowed increase of level for storage of the closing structure. + /// [m] /// public const string ClosingStructureParameterKeyword2 = "KW_BETSLUIT2"; /// - /// The third closing structure parameter keyword. + /// The orientation of the structure, relative to north. + /// [degrees] /// public const string ClosingStructureParameterKeyword3 = "KW_BETSLUIT3"; /// - /// The fourth closing structure parameter keyword. + /// The width of the flow apertures of the closing structure. + /// [m] /// public const string ClosingStructureParameterKeyword4 = "KW_BETSLUIT4"; /// - /// The fifth closing structure parameter keyword. + /// The crest level of the opened closing structure. + /// [m+NAP] /// public const string ClosingStructureParameterKeyword5 = "KW_BETSLUIT5"; /// - /// The sixth closing structure parameter keyword. + /// The interior water level of the closing structure. + /// [m+NAP] /// public const string ClosingStructureParameterKeyword6 = "KW_BETSLUIT6"; /// - /// The seventh closing structure parameter keyword. + /// The threshold height of the opened closing structure. + /// [m+NAP] /// public const string ClosingStructureParameterKeyword7 = "KW_BETSLUIT7"; /// - /// The eighth closing structure parameter keyword. + /// The area of the flow aperture of the closing structure. + /// [m^2] /// public const string ClosingStructureParameterKeyword8 = "KW_BETSLUIT8"; /// - /// The ninth closing structure parameter keyword. + /// The critical overtopping discharge of the closing structure. + /// [m^2/s] /// public const string ClosingStructureParameterKeyword9 = "KW_BETSLUIT9"; /// - /// The tenth closing structure parameter keyword. + /// The flow width of the closing structure at the bottom protection. + /// [m] /// public const string ClosingStructureParameterKeyword10 = "KW_BETSLUIT10"; /// - /// The eleventh closing structure parameter keyword. + /// The probability of the closing structure being open before flooding. + /// [1/year] /// public const string ClosingStructureParameterKeyword11 = "KW_BETSLUIT11"; /// - /// The twelfth closing structure parameter keyword. + /// The probability of failing to close the closing structure. + /// [1/year] /// public const string ClosingStructureParameterKeyword12 = "KW_BETSLUIT12"; /// - /// The thirteenth closing structure parameter keyword. + /// The number of identical apertures of the closing structure. /// public const string ClosingStructureParameterKeyword13 = "KW_BETSLUIT13"; /// - /// The fourteenth closing structure parameter keyword. + /// The probability of failing to repair a failed closure of the closing structure. + /// [1/year] /// public const string ClosingStructureParameterKeyword14 = "KW_BETSLUIT14"; /// - /// The fifteenth closing structure parameter keyword. + /// The type of closing structure inflow model. /// public const string ClosingStructureParameterKeyword15 = "KW_BETSLUIT15"; @@ -152,132 +173,157 @@ #region Stability Point Structure Keywords /// - /// The first stability point structure parameter keyword. + /// The orientation of the structure, relative to north. + /// [degrees] /// public const string StabilityPointStructureParameterKeyword1 = "KW_STERSTAB1"; /// - /// The second stability point structure parameter keyword. + /// The storage area of the stability point structure. + /// [m^2] /// public const string StabilityPointStructureParameterKeyword2 = "KW_STERSTAB2"; /// - /// The third stability point structure parameter keyword. + /// The allowed increase of level for storage of the stability point structure. + /// [m] /// public const string StabilityPointStructureParameterKeyword3 = "KW_STERSTAB3"; /// - /// The fourth stability point structure parameter keyword. + /// The width of the flow apertures of the stability point structure. + /// [m] /// public const string StabilityPointStructureParameterKeyword4 = "KW_STERSTAB4"; /// - /// The fifth stability point structure parameter keyword. + /// The interior water level of the stability point structure. + /// [m+NAP] /// public const string StabilityPointStructureParameterKeyword5 = "KW_STERSTAB5"; /// - /// The sixth stability point structure parameter keyword. + /// The threshold height of the opened stability point structure. + /// [m+NAP] /// public const string StabilityPointStructureParameterKeyword6 = "KW_STERSTAB6"; /// - /// The seventh stability point structure parameter keyword. + /// The critical overtopping discharge of the stability point structure. + /// [m^2/s] /// public const string StabilityPointStructureParameterKeyword7 = "KW_STERSTAB7"; /// - /// The eighth stability point structure parameter keyword. + /// The flow width of the stability point structure at the bottom protection. + /// [m] /// public const string StabilityPointStructureParameterKeyword8 = "KW_STERSTAB8"; /// - /// The ninth stability point structure parameter keyword. + /// The constructive strength of the linear load model of the stability point structure. + /// [kN/m^2] /// public const string StabilityPointStructureParameterKeyword9 = "KW_STERSTAB9"; /// - /// The tenth stability point structure parameter keyword. + /// The constructive strength of the quadratic load model of the stability point structure. + /// [kN/m] /// public const string StabilityPointStructureParameterKeyword10 = "KW_STERSTAB10"; /// - /// The eleventh stability point structure parameter keyword. + /// The bank width of the stability point structure. + /// [m] /// public const string StabilityPointStructureParameterKeyword11 = "KW_STERSTAB11"; /// - /// The twelfth stability point structure parameter keyword. + /// The inside water level failure construction of the stability point structure. + /// [m+NAP] /// public const string StabilityPointStructureParameterKeyword12 = "KW_STERSTAB12"; /// - /// The thirteenth stability point structure parameter keyword. + /// The the evaluation level of the stability point structure. + /// [m+NAP] /// public const string StabilityPointStructureParameterKeyword13 = "KW_STERSTAB13"; /// - /// The fourteenth stability point structure parameter keyword. + /// The crest level of the stability point structure. + /// [m+NAP] /// public const string StabilityPointStructureParameterKeyword14 = "KW_STERSTAB14"; /// - /// The fifteenth stability point structure parameter keyword. + /// The vertical distance of the stability point structure. + /// [m] /// public const string StabilityPointStructureParameterKeyword15 = "KW_STERSTAB15"; /// - /// The sixteenth stability point structure parameter keyword. + /// The probability of failing to repair a failed closure of the stability point structure. + /// [1/year] /// public const string StabilityPointStructureParameterKeyword16 = "KW_STERSTAB16"; /// - /// The seventeenth stability point structure parameter keyword. + /// The failure collision energy of the stability point structure. + /// [kN m] /// public const string StabilityPointStructureParameterKeyword17 = "KW_STERSTAB17"; /// - /// The eighteenth stability point structure parameter keyword. + /// The mass of the ship. + /// [ton] /// public const string StabilityPointStructureParameterKeyword18 = "KW_STERSTAB18"; /// - /// The nineteenth stability point structure parameter keyword. + /// The velocity of the ship. + /// [m/s] /// public const string StabilityPointStructureParameterKeyword19 = "KW_STERSTAB19"; /// - /// The twentieth stability point structure parameter keyword. + /// The the levelling count. + /// [1/year] /// public const string StabilityPointStructureParameterKeyword20 = "KW_STERSTAB20"; /// - /// The twenty-first stability point structure parameter keyword. + /// The probability of a secondary collision on the structure. + /// [1/(year levelling)] /// public const string StabilityPointStructureParameterKeyword21 = "KW_STERSTAB21"; /// - /// The twenty-second stability point structure parameter keyword. + /// The maximum flow velocity at which the structure is closable. + /// [m/s] /// public const string StabilityPointStructureParameterKeyword22 = "KW_STERSTAB22"; /// - /// The twenty-third stability point structure parameter keyword. + /// The stability properties of the linear load model of the stability point structure. + /// [kN/m^2] /// public const string StabilityPointStructureParameterKeyword23 = "KW_STERSTAB23"; /// - /// The twenty-fourth stability point structure parameter keyword. + /// The stability properties of the quadratic load model of the stability point structure. + /// [kN/m] /// public const string StabilityPointStructureParameterKeyword24 = "KW_STERSTAB24"; /// - /// The twenty-fifth stability point structure parameter keyword. + /// The area of the flow aperture of the stability point structure. + /// [m^2] /// public const string StabilityPointStructureParameterKeyword25 = "KW_STERSTAB25"; /// - /// The twenty-sixth stability point structure parameter keyword. + /// The type of stability point structure inflow model. /// public const string StabilityPointStructureParameterKeyword26 = "KW_STERSTAB26";