namespace Deltares.Geotechnics.WaternetCreator { public enum PLLinePointPositionXzType { OnPLLine, AbovePLLine, BelowPLLine, BeyondPLLine // indicates that point is outside the scope of the pl line. }; public enum PLLineType { PL1, PL2, PL3, PL4 } /*public class ModelParametersForPlLines { public virtual int PersistenceId { get; private set; } public virtual double PenetrationLength { get; set; } public virtual double DampingFactorPl3 { get; set; } public virtual double DampingFactorPl4 { get; set; } public virtual PlLineCreationMethod PlLineCreationMethod { get; set; } } */ public enum PlLineCreationMethod { ExpertKnowledgeRrd, ExpertKnowledgeLinearInDike, RingtoetsWti2017, //GaugesWithFallbackToExpertKnowledgeRrd, DupuitStatic, DupuitDynamic, Sensors, None } public enum SoilGeometryType { SoilGeometry1D, SoilGeometry2D } public enum PhreaticAdaptionType //NWO { None, MakeEmpty, Fill // Note: Fill not yet implemented! }; }