Index: dam engine/trunk/src/Deltares.DamEngine.Calculators/KernelWrappers/DamPipingSellmeijer4Forces/DamPipingSellmeijer4ForcesOutput.cs =================================================================== diff -u -r686 -r804 --- dam engine/trunk/src/Deltares.DamEngine.Calculators/KernelWrappers/DamPipingSellmeijer4Forces/DamPipingSellmeijer4ForcesOutput.cs (.../DamPipingSellmeijer4ForcesOutput.cs) (revision 686) +++ dam engine/trunk/src/Deltares.DamEngine.Calculators/KernelWrappers/DamPipingSellmeijer4Forces/DamPipingSellmeijer4ForcesOutput.cs (.../DamPipingSellmeijer4ForcesOutput.cs) (revision 804) @@ -6,11 +6,52 @@ { public class DamPipingSellmeijer4ForcesOutput : IKernelDataOutput { + /// + /// Gets or sets the safetyfactor for Bligh. + /// + /// + /// The fo sp. + /// public double FoSp { get; set; } + + /// + /// Gets or sets the H-critical. + /// + /// + /// The hc. + /// public double Hc { get; set; } + + /// + /// Gets or sets the calculation result. + /// + /// + /// The calculation result. + /// public CalculationResult CalculationResult { get; set; } + + /// + /// Gets or sets the uplift factor. + /// + /// + /// The uplift factor. + /// public double? UpliftFactor { get; set; } + + /// + /// Gets or sets the x-coordinate of the exit point. + /// + /// + /// The exit point x. + /// public double ExitPointX { get; set; } + + /// + /// Gets or sets the uplift situation. + /// + /// + /// The uplift situation. + /// public UpliftSituation UpliftSituation { get; set; } } }