Index: DamEngine/trunk/src/Deltares.DamEngine.Calculators/KernelWrappers/WbiPipingSellmeijerRevised/WbiPipingSellmeijerRevisedOutput.cs =================================================================== diff -u -r1586 -r1618 --- DamEngine/trunk/src/Deltares.DamEngine.Calculators/KernelWrappers/WbiPipingSellmeijerRevised/WbiPipingSellmeijerRevisedOutput.cs (.../WbiPipingSellmeijerRevisedOutput.cs) (revision 1586) +++ DamEngine/trunk/src/Deltares.DamEngine.Calculators/KernelWrappers/WbiPipingSellmeijerRevised/WbiPipingSellmeijerRevisedOutput.cs (.../WbiPipingSellmeijerRevisedOutput.cs) (revision 1618) @@ -27,6 +27,7 @@ { /// /// Output parameters for Wbi Piping SellmeijerRevised + /// Note: the Wbi kernel does provide more output (such as CCreep, Zp etc) but thta just is not used in DAM. /// public class WbiPipingSellmeijerRevisedOutput: IKernelDataOutput { @@ -47,38 +48,6 @@ public double Hc { get; set; } /// - /// Gets or sets the zp (limit state function). - /// - /// - /// The zp. - /// - // public double Zp { get; set; } DAM does not use this! - - /// - /// Gets or sets the HCP (critical water level for piping). - /// - /// - /// The HCP. - /// - //public double Hcp { get; set; } DAM does not use this! - - /// - /// Gets or sets the creep coefficient. - /// - /// - /// The ccreep. - /// - //public double Ccreep { get; set; } DAM does not use this! - - /// - /// Gets or sets the reduced fall. - /// - /// - /// The reduced fall. - /// - //public double ReducedFall { get; set; } DAM does not use this! - - /// /// Gets or sets the calculation result. /// /// @@ -92,22 +61,22 @@ /// /// The uplift factor. /// - public double? UpliftFactor { get; set; } //#Bka needed?? For now, yes as we use DAM uplift. + public double? UpliftFactor { get; set; } /// /// Gets or sets the x-coordinate of the exit point. /// /// /// The exit point x. /// - public double ExitPointX { get; set; }//#Bka needed?? For now, yes + public double ExitPointX { get; set; } /// /// Gets or sets the uplift situation. /// /// /// The uplift situation. /// - public UpliftSituation UpliftSituation { get; set; }//#Bka needed?? For now, yes + public UpliftSituation UpliftSituation { get; set; } } }