Index: DamEngine/trunk/src/Deltares.DamEngine.Data/Geotechnics/PreConsolidationStress.cs
===================================================================
diff -u -r4000 -r4052
--- DamEngine/trunk/src/Deltares.DamEngine.Data/Geotechnics/PreConsolidationStress.cs (.../PreConsolidationStress.cs) (revision 4000)
+++ DamEngine/trunk/src/Deltares.DamEngine.Data/Geotechnics/PreConsolidationStress.cs (.../PreConsolidationStress.cs) (revision 4052)
@@ -22,80 +22,79 @@
using Deltares.DamEngine.Data.Geometry;
using Deltares.DamEngine.Data.Standard.Language;
-namespace Deltares.DamEngine.Data.Geotechnics
+namespace Deltares.DamEngine.Data.Geotechnics;
+
+///
+/// Pre-consolidation stress used within preproces stability
+///
+public class PreConsolidationStress : GeometryPoint
{
- ///
- /// Pre-consolidation stress used within preproces stability
+ ///
+ /// Initializes a new instance of the class
+ /// as a XZ point.
///
- public class PreConsolidationStress : GeometryPoint
+ public PreConsolidationStress()
{
- ///
- /// Initializes a new instance of the class
- /// as a XZ point.
- ///
- public PreConsolidationStress()
- {
- StressValue = double.NaN;
- }
+ StressValue = double.NaN;
+ }
- ///
- /// Gets or sets the name.
- ///
- ///
- /// The name.
- ///
- public override string Name { get; set; }
+ ///
+ /// Gets or sets the name.
+ ///
+ ///
+ /// The name.
+ ///
+ public override string Name { get; set; }
- ///
- /// Gets or sets the X coordinate of publisherEventArgs GeometryPoint
- ///
- [Translation("XCoordYieldStress")]
- public override double X
+ ///
+ /// Gets or sets the X coordinate of publisherEventArgs GeometryPoint
+ ///
+ [Translation("XCoordYieldStress")]
+ public override double X
+ {
+ get
{
- get
- {
- return base.X;
- }
- set
- {
- base.X = value;
- }
+ return base.X;
}
+ set
+ {
+ base.X = value;
+ }
+ }
- ///
- /// Gets or sets the Z coordinate of publisherEventArgs GeometryPoint
- ///
- [Translation("ZCoordYieldStress")]
- public override double Z
+ ///
+ /// Gets or sets the Z coordinate of publisherEventArgs GeometryPoint
+ ///
+ [Translation("ZCoordYieldStress")]
+ public override double Z
+ {
+ get
{
- get
- {
- return base.Z;
- }
- set
- {
- base.Z = value;
- }
+ return base.Z;
}
+ set
+ {
+ base.Z = value;
+ }
+ }
- ///
- /// Gets or sets the stress value.
- ///
- public double StressValue { get; set; }
+ ///
+ /// Gets or sets the stress value.
+ ///
+ public double StressValue { get; set; }
- ///
- /// Clones this instance.
- ///
- public override object Clone()
+ ///
+ /// Clones this instance.
+ ///
+ public override object Clone()
+ {
+ var clone = new PreConsolidationStress
{
- var clone = new PreConsolidationStress
- {
- Name = Name,
- StressValue = StressValue,
- X = X,
- Z = Z
- };
- return clone;
- }
+ Name = Name,
+ StressValue = StressValue,
+ X = X,
+ Z = Z
+ };
+ return clone;
}
}
\ No newline at end of file