Index: DamEngine/trunk/src/Deltares.DamEngine.Calculators/KernelWrappers/Common/DamKernelInput.cs
===================================================================
diff -u -r4000 -r4052
--- DamEngine/trunk/src/Deltares.DamEngine.Calculators/KernelWrappers/Common/DamKernelInput.cs (.../DamKernelInput.cs) (revision 4000)
+++ DamEngine/trunk/src/Deltares.DamEngine.Calculators/KernelWrappers/Common/DamKernelInput.cs (.../DamKernelInput.cs) (revision 4052)
@@ -22,77 +22,76 @@
using System;
using Deltares.DamEngine.Data.General;
-namespace Deltares.DamEngine.Calculators.KernelWrappers.Common
+namespace Deltares.DamEngine.Calculators.KernelWrappers.Common;
+
+///
+/// Input that all dam kernels share
+///
+public class DamKernelInput
{
///
- /// Input that all dam kernels share
+ /// Gets or sets the calculation directory.
///
- public class DamKernelInput
- {
- ///
- /// Gets or sets the calculation directory.
- ///
- ///
- /// The calculation directory.
- ///
- public string CalculationDir { get; set; }
+ ///
+ /// The calculation directory.
+ ///
+ public string CalculationDir { get; set; }
- ///
- /// Gets or sets the project directory.
- ///
- ///
- /// The project directory.
- ///
- public string ProjectDir { get; set; }
+ ///
+ /// Gets or sets the project directory.
+ ///
+ ///
+ /// The project directory.
+ ///
+ public string ProjectDir { get; set; }
- ///
- /// Gets or sets the location.
- ///
- ///
- /// The location.
- ///
- public Location Location { get; set; }
+ ///
+ /// Gets or sets the location.
+ ///
+ ///
+ /// The location.
+ ///
+ public Location Location { get; set; }
- ///
- /// Gets or sets the filename prefix.
- ///
- ///
- /// The filename prefix.
- ///
- public string FilenamePrefix { get; set; }
+ ///
+ /// Gets or sets the filename prefix.
+ ///
+ ///
+ /// The filename prefix.
+ ///
+ public string FilenamePrefix { get; set; }
- ///
- /// Gets or sets the sub soil scenario.
- ///
- ///
- /// The sub soil scenario.
- ///
- public SoilGeometryProbability SubSoilScenario { get; set; }
+ ///
+ /// Gets or sets the sub soil scenario.
+ ///
+ ///
+ /// The sub soil scenario.
+ ///
+ public SoilGeometryProbability SubSoilScenario { get; set; }
- ///
- /// Gets or sets the date time (for operational calculation)
- ///
- ///
- /// The date time.
- ///
- public DateTime TimeStepDateTime { get; set; }
+ ///
+ /// Gets or sets the date time (for operational calculation)
+ ///
+ ///
+ /// The date time.
+ ///
+ public DateTime TimeStepDateTime { get; set; }
- ///
- /// The high river level
- ///
- public double RiverLevelHigh { get; set; }
+ ///
+ /// The high river level
+ ///
+ public double RiverLevelHigh { get; set; }
- ///
- /// The low river level
- ///
- public double? RiverLevelLow { get; set; }
+ ///
+ /// The low river level
+ ///
+ public double? RiverLevelLow { get; set; }
- ///
- /// Gets or sets the dam failure mechanism calculation specification.
- ///
- ///
- /// The dam failure mechanism calculation specification.
- ///
- public DamFailureMechanismeCalculationSpecification DamFailureMechanismeCalculationSpecification { get; set; }
- }
+ ///
+ /// Gets or sets the dam failure mechanism calculation specification.
+ ///
+ ///
+ /// The dam failure mechanism calculation specification.
+ ///
+ public DamFailureMechanismeCalculationSpecification DamFailureMechanismeCalculationSpecification { get; set; }
}
\ No newline at end of file