Index: DamEngine/trunk/src/Deltares.DamEngine.Data/General/Location.cs =================================================================== diff -u -r6245 -r6404 --- DamEngine/trunk/src/Deltares.DamEngine.Data/General/Location.cs (.../Location.cs) (revision 6245) +++ DamEngine/trunk/src/Deltares.DamEngine.Data/General/Location.cs (.../Location.cs) (revision 6404) @@ -1,4 +1,4 @@ -// Copyright (C) Stichting Deltares 2024. All rights reserved. +// Copyright (C) Stichting Deltares 2025. All rights reserved. // // This file is part of the Dam Engine. // @@ -168,7 +168,7 @@ /// The soil list. /// public SoilList SoilList { get; set; } - + /// /// Gets or sets the degree of consolidation of the soils (consolidated) due to the traffic load (consolidator). /// @@ -423,7 +423,19 @@ /// public ModelParametersForPlLines ModelParametersForPlLines { get; set; } = new ModelParametersForPlLines(); + #region PlLine creation parameters + /// + /// Gets or sets the intrusion vertical water pressure. + /// + /// + /// The intrusion vertical water pressure. + /// + public IntrusionVerticalWaterPressureType? IntrusionVerticalWaterPressure { get; set; } = IntrusionVerticalWaterPressureType.Standard; + + #endregion + + /// /// Gets the dike embankment soil. /// /// @@ -451,8 +463,9 @@ if (soil == null) { - soil = GetDikeEmbankmentSoil(); + soil = GetDikeEmbankmentSoil(); } + return soil; } @@ -536,16 +549,4 @@ public virtual double StabilitySlopeAdaptionDeltaX { get; set; } = 2.0; #endregion - - #region PlLine creation parameters - - /// - /// Gets or sets the intrusion vertical water pressure. - /// - /// - /// The intrusion vertical water pressure. - /// - public IntrusionVerticalWaterPressureType? IntrusionVerticalWaterPressure { get; set; } = IntrusionVerticalWaterPressureType.Standard; - - #endregion } \ No newline at end of file