Index: Ringtoets/Piping/src/Ringtoets.Piping.Data/PipingOutput.cs =================================================================== diff -u -r5803275ea1237501fd8a9fdd9d1f795d98d0aa4c -ra18b7dcb5ed74f0d8ffc9a4d284d98b25816b9b8 --- Ringtoets/Piping/src/Ringtoets.Piping.Data/PipingOutput.cs (.../PipingOutput.cs) (revision 5803275ea1237501fd8a9fdd9d1f795d98d0aa4c) +++ Ringtoets/Piping/src/Ringtoets.Piping.Data/PipingOutput.cs (.../PipingOutput.cs) (revision a18b7dcb5ed74f0d8ffc9a4d284d98b25816b9b8) @@ -50,59 +50,65 @@ UpliftZValue = constructionProperties.UpliftZValue; SellmeijerFactorOfSafety = constructionProperties.SellmeijerFactorOfSafety; SellmeijerZValue = constructionProperties.SellmeijerZValue; + UpliftEffectiveStress = new RoundedDouble(2, constructionProperties.UpliftEffectiveStress); HeaveGradient = new RoundedDouble(2, constructionProperties.HeaveGradient); SellmeijerCreepCoefficient = new RoundedDouble(1, constructionProperties.SellmeijerCreepCoefficient); SellmeijerCriticalFall = new RoundedDouble(2, constructionProperties.SellmeijerCriticalFall); SellmeijerReducedFall = new RoundedDouble(2, constructionProperties.SellmeijerReducedFall); } /// - /// The calculated z-value for the uplift sub calculation. + /// Gets the calculated z-value for the uplift sub calculation. /// public double UpliftZValue { get; private set; } /// - /// The factor of safety for the uplift sub calculation. + /// Gets the factor of safety for the uplift sub calculation. /// public double UpliftFactorOfSafety { get; private set; } /// - /// The calculated z-value for the heave sub calculation. + /// Gets the calculated z-value for the heave sub calculation. /// public double HeaveZValue { get; private set; } /// - /// The factor of safety for the heave sub calculation. + /// Gets the factor of safety for the heave sub calculation. /// public double HeaveFactorOfSafety { get; private set; } /// - /// The calculated z-value for the Sellmeijer sub calculation. + /// Gets the calculated z-value for the Sellmeijer sub calculation. /// public double SellmeijerZValue { get; private set; } /// - /// The factor of safety for the Sellmeijer sub calculation. + /// Gets the factor of safety for the Sellmeijer sub calculation. /// public double SellmeijerFactorOfSafety { get; private set; } /// - /// The gradient that was calculated for the heave sub calculation. + /// Gets the effective stress that was calculated for the uplift sub calculation. /// + public RoundedDouble UpliftEffectiveStress { get; private set; } + + /// + /// Gets the gradient that was calculated for the heave sub calculation. + /// public RoundedDouble HeaveGradient { get; private set; } /// - /// The creep coefficient that was calculated for the Sellmeijer sub calculation. + /// Gets the creep coefficient that was calculated for the Sellmeijer sub calculation. /// public RoundedDouble SellmeijerCreepCoefficient { get; private set; } /// - /// The critical fall that was calculated for the Sellmeijer sub calculation. + /// Gets the critical fall that was calculated for the Sellmeijer sub calculation. /// public RoundedDouble SellmeijerCriticalFall { get; private set; } /// - /// The reduced fall that was calculated for the Sellmeijer sub calculation. + /// Gets the reduced fall that was calculated for the Sellmeijer sub calculation. /// public RoundedDouble SellmeijerReducedFall { get; private set; } @@ -122,59 +128,65 @@ HeaveFactorOfSafety = double.NaN; SellmeijerZValue = double.NaN; SellmeijerFactorOfSafety = double.NaN; + UpliftEffectiveStress = double.NaN; HeaveGradient = double.NaN; SellmeijerCreepCoefficient = double.NaN; SellmeijerCriticalFall = double.NaN; SellmeijerReducedFall = double.NaN; } /// - /// The calculated z-value for the uplift sub calculation. + /// Sets the calculated z-value for the uplift sub calculation. /// public double UpliftZValue { internal get; set; } /// - /// The factor of safety for the uplift sub calculation. + /// Sets the factor of safety for the uplift sub calculation. /// public double UpliftFactorOfSafety { internal get; set; } /// - /// The calculated z-value for the heave sub calculation. + /// Sets the calculated z-value for the heave sub calculation. /// public double HeaveZValue { internal get; set; } /// - /// The factor of safety for the heave sub calculation. + /// Sets the factor of safety for the heave sub calculation. /// public double HeaveFactorOfSafety { internal get; set; } /// - /// The calculated z-value for the Sellmeijer sub calculation. + /// Sets the calculated z-value for the Sellmeijer sub calculation. /// public double SellmeijerZValue { internal get; set; } /// - /// The factor of safety for the Sellmeijer sub calculation. + /// Sets the factor of safety for the Sellmeijer sub calculation. /// public double SellmeijerFactorOfSafety { internal get; set; } /// - /// The gradient that was calculated for the heave sub calculation. + /// Gets the effective stress that was calculated for the uplift sub calculation. /// + public double UpliftEffectiveStress { internal get; set; } + + /// + /// Sets the gradient that was calculated for the heave sub calculation. + /// public double HeaveGradient { internal get; set; } /// - /// The creep coefficient that was calculated for the Sellmeijer sub calculation. + /// Sets the creep coefficient that was calculated for the Sellmeijer sub calculation. /// public double SellmeijerCreepCoefficient { internal get; set; } /// - /// The critical fall that was calculated for the Sellmeijer sub calculation. + /// Sets the critical fall that was calculated for the Sellmeijer sub calculation. /// public double SellmeijerCriticalFall { internal get; set; } /// - /// The reduced fall that was calculated for the Sellmeijer sub calculation. + /// Sets the reduced fall that was calculated for the Sellmeijer sub calculation. /// public double SellmeijerReducedFall { internal get; set; } }