Index: DamEngine/trunk/src/Deltares.DamEngine.Calculators/KernelWrappers/MacroStabilityCommon/UpliftVanCalculationGrid.cs
===================================================================
diff -u -r4000 -r4052
--- DamEngine/trunk/src/Deltares.DamEngine.Calculators/KernelWrappers/MacroStabilityCommon/UpliftVanCalculationGrid.cs (.../UpliftVanCalculationGrid.cs) (revision 4000)
+++ DamEngine/trunk/src/Deltares.DamEngine.Calculators/KernelWrappers/MacroStabilityCommon/UpliftVanCalculationGrid.cs (.../UpliftVanCalculationGrid.cs) (revision 4052)
@@ -21,81 +21,80 @@
using System.Collections.Generic;
-namespace Deltares.DamEngine.Calculators.KernelWrappers.MacroStabilityCommon
+namespace Deltares.DamEngine.Calculators.KernelWrappers.MacroStabilityCommon;
+
+/// Parameters for the Uplift Van Macrostability kernel; used for IO
+public class UpliftVanCalculationGrid
{
- /// Parameters for the Uplift Van Macrostability kernel; used for IO
- public class UpliftVanCalculationGrid
- {
- /// Gets or sets the IsGridsAutomatic option.
- /// IsGridsAutomatic.
- public bool IsGridsAutomatic { get; set; }
+ /// Gets or sets the IsGridsAutomatic option.
+ /// IsGridsAutomatic.
+ public bool IsGridsAutomatic { get; set; }
- /// Gets or sets the left grid x left.
- /// The left grid x left.
- public double LeftGridXLeft { get; set; }
+ /// Gets or sets the left grid x left.
+ /// The left grid x left.
+ public double LeftGridXLeft { get; set; }
- /// Gets or sets the left grid x right.
- /// The left grid x right.
- public double LeftGridXRight { get; set; }
+ /// Gets or sets the left grid x right.
+ /// The left grid x right.
+ public double LeftGridXRight { get; set; }
- /// Gets or sets the left grid z top.
- /// The left grid z top.
- public double LeftGridZTop { get; set; }
+ /// Gets or sets the left grid z top.
+ /// The left grid z top.
+ public double LeftGridZTop { get; set; }
- /// Gets or sets the left grid z bottom.
- /// The left grid z bottom.
- public double LeftGridZBottom { get; set; }
+ /// Gets or sets the left grid z bottom.
+ /// The left grid z bottom.
+ public double LeftGridZBottom { get; set; }
- /// Gets or sets the left grid x count.
- /// The left grid x count.
- public int LeftGridXCount { get; set; }
+ /// Gets or sets the left grid x count.
+ /// The left grid x count.
+ public int LeftGridXCount { get; set; }
- /// Gets or sets the left grid z count.
- /// The left grid z count.
- public int LeftGridZCount { get; set; }
+ /// Gets or sets the left grid z count.
+ /// The left grid z count.
+ public int LeftGridZCount { get; set; }
- /// Gets or sets the right grid x left.
- /// The right grid x left.
- public double RightGridXLeft { get; set; }
+ /// Gets or sets the right grid x left.
+ /// The right grid x left.
+ public double RightGridXLeft { get; set; }
- /// Gets or sets the right grid x right.
- /// The right grid x right.
- public double RightGridXRight { get; set; }
+ /// Gets or sets the right grid x right.
+ /// The right grid x right.
+ public double RightGridXRight { get; set; }
- /// Gets or sets the right grid z top.
- /// The right grid z top.
- public double RightGridZTop { get; set; }
+ /// Gets or sets the right grid z top.
+ /// The right grid z top.
+ public double RightGridZTop { get; set; }
- /// Gets or sets the right grid z bottom.
- /// The right grid z bottom.
- public double RightGridZBottom { get; set; }
+ /// Gets or sets the right grid z bottom.
+ /// The right grid z bottom.
+ public double RightGridZBottom { get; set; }
- /// Gets or sets the right grid x count.
- /// The right grid x count.
- public int RightGridXCount { get; set; }
+ /// Gets or sets the right grid x count.
+ /// The right grid x count.
+ public int RightGridXCount { get; set; }
- /// Gets or sets the right grid z count.
- /// The right grid z count.
- public int RightGridZCount { get; set; }
+ /// Gets or sets the right grid z count.
+ /// The right grid z count.
+ public int RightGridZCount { get; set; }
- /// Gets or sets the tangent line z top.
- /// The tangent line z top.
- /// Gets or sets the tangent line creation automatic or specified.
- /// The tangent line creation setting .
- public bool IsTangentLinesAutomatic { get; set; }
+ /// Gets or sets the tangent line z top.
+ /// The tangent line z top.
+ /// Gets or sets the tangent line creation automatic or specified.
+ /// The tangent line creation setting .
+ public bool IsTangentLinesAutomatic { get; set; }
- public double TangentLineZTop { get; set; }
+ public double TangentLineZTop { get; set; }
- /// Gets or sets the tangent line z bottom.
- /// The tangent line z bottom.
- public double TangentLineZBottom { get; set; }
+ /// Gets or sets the tangent line z bottom.
+ /// The tangent line z bottom.
+ public double TangentLineZBottom { get; set; }
- /// Gets or sets the tangent line count.
- /// The tangent line count.
- public int TangentLineCount { get; set; }
+ /// Gets or sets the tangent line count.
+ /// The tangent line count.
+ public int TangentLineCount { get; set; }
- /// Gets or sets the tangent line levels.
- /// The tangent line levels.
- public List TangentLineLevels { get; set; } = new List();
- }
+ /// Gets or sets the tangent line levels.
+ /// The tangent line levels.
+ public List TangentLineLevels { get; set; } = new List();
}
\ No newline at end of file