Index: DamEngine/trunk/src/Deltares.DamEngine.Data/General/PlLineEnumerations.cs =================================================================== diff -u -r4000 -r4052 --- DamEngine/trunk/src/Deltares.DamEngine.Data/General/PlLineEnumerations.cs (.../PlLineEnumerations.cs) (revision 4000) +++ DamEngine/trunk/src/Deltares.DamEngine.Data/General/PlLineEnumerations.cs (.../PlLineEnumerations.cs) (revision 4052) @@ -19,64 +19,63 @@ // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. -namespace Deltares.DamEngine.Data.General +namespace Deltares.DamEngine.Data.General; + +/// +/// Types of PlLine Assignments +/// +public enum PlLineAssignment { + NoPlLines, + ExpertKnowledge +} + +/// +/// PlLineType +/// +public enum PlLineType +{ + Pl1, + Pl2, + Pl3, + Pl4 +} + +/// +/// PlLineCreationMethod +/// +public enum PlLineCreationMethod +{ + ExpertKnowledgeRRD, + ExpertKnowledgeLinearInDike, + GaugesWithFallbackToExpertKnowledgeRRD, + Sensors, + None +} + +/// +/// Dike soil scenario for the automatic creation of the waternet - 4 possibilities. +/// This is used in the wti stability kernel +/// +public enum DikeSoilScenario +{ /// - /// Types of PlLine Assignments + /// Clay dike on clay subsoil /// - public enum PlLineAssignment - { - NoPlLines, - ExpertKnowledge - } + ClayDikeOnClay, /// - /// PlLineType + /// Sand dike on clay subsoil /// - public enum PlLineType - { - Pl1, - Pl2, - Pl3, - Pl4 - } + SandDikeOnClay, /// - /// PlLineCreationMethod + /// Clay dike on sand subsoil /// - public enum PlLineCreationMethod - { - ExpertKnowledgeRRD, - ExpertKnowledgeLinearInDike, - GaugesWithFallbackToExpertKnowledgeRRD, - Sensors, - None - } + ClayDikeOnSand, /// - /// Dike soil scenario for the automatic creation of the waternet - 4 possibilities. - /// This is used in the wti stability kernel + /// Sand dike on sand subsoil /// - public enum DikeSoilScenario - { - /// - /// Clay dike on clay subsoil - /// - ClayDikeOnClay, - - /// - /// Sand dike on clay subsoil - /// - SandDikeOnClay, - - /// - /// Clay dike on sand subsoil - /// - ClayDikeOnSand, - - /// - /// Sand dike on sand subsoil - /// - SandDikeOnSand - } + SandDikeOnSand } \ No newline at end of file