using Deltares.DamEngine.Calculators.KernelWrappers.Interfaces; using Deltares.DamEngine.Data.General; using Deltares.DamEngine.Data.Standard.Calculation; namespace Deltares.DamEngine.Calculators.KernelWrappers.DamPipingBligh { /// /// Output class for piping Bligh /// /// public class DamPipingBlighOutput : IKernelDataOutput { /// /// Gets or sets the calculation result. /// /// /// The calculation result. /// public CalculationResult CalculationResult { get; set; } /// /// 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 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; } } }