Index: DamClients/DamLive/trunk/src/Deltares.DamLive.Data/CalculationParameters.cs =================================================================== diff -u -r5807 -r5843 --- DamClients/DamLive/trunk/src/Deltares.DamLive.Data/CalculationParameters.cs (.../CalculationParameters.cs) (revision 5807) +++ DamClients/DamLive/trunk/src/Deltares.DamLive.Data/CalculationParameters.cs (.../CalculationParameters.cs) (revision 5843) @@ -23,20 +23,54 @@ namespace Deltares.DamLive.Data; +/// +/// Class to hold the failure mechanism type. +/// public class CalculationModules { + /// + /// True if the failure mechanism is stability inside. + /// public bool StabilityInside { get; set; } + + /// + /// True if the failure mechanism is stability outside. + /// public bool StabilityOutside { get; set; } + + /// + /// True if the failure mechanism is piping with WTI kernel. + /// public bool PipingWti { get; set; } + + /// + /// True if the failure mechanism is piping with Bligh kernel. + /// public bool PipingBligh { get; set; } } +/// +/// Class to hold the calculation settings. +/// public class CalculationParameters { + /// + /// The working path for the calculation. + /// public string WorkingPath { get; set; } + + /// + /// The working path for the stability calculation. + /// public string StabilityWorkingPath { get; set; } - public string PipingWorkingPath { get; set; } - + + /// + /// The failure mechanism type. + /// public CalculationModules CalculationModules { get; set; } + + /// + /// The parameters for the stability calculation. + /// public MStabParameters StabilityParameters { get; set; } } \ No newline at end of file