namespace Ringtoets.Piping.Data
{
///
/// Simple class containing the results of a Piping calculation.
///
public class PipingOutput
{
///
/// Creates a new instance of .
///
/// The calculated z-value for the uplift sub calculation.
/// The factor of safety for the uplift sub calculation.
/// The calculated z-value for the heave sub calculation.
/// The factor of safety for the heave sub calculation.
/// The calculated z-value for the Sellmeijer sub calculation.
/// The factor of safety for the Sellmeijer sub calculation.
public PipingOutput(double upliftZValue, double upliftFactorOfSafety, double heaveZValue, double heaveFactorOfSafety, double sellmeijerZValue, double sellmeijerFactorOfSafety)
{
HeaveFactorOfSafety = heaveFactorOfSafety;
HeaveZValue = heaveZValue;
UpliftFactorOfSafety = upliftFactorOfSafety;
UpliftZValue = upliftZValue;
SellmeijerFactorOfSafety = sellmeijerFactorOfSafety;
SellmeijerZValue = sellmeijerZValue;
}
///
/// The calculated z-value for the uplift sub calculation.
///
public double UpliftZValue { get; private set; }
///
/// The factor of safety for the uplift sub calculation.
///
public double UpliftFactorOfSafety { get; private set; }
///
/// The calculated z-value for the heave sub calculation.
///
public double HeaveZValue { get; private set; }
///
/// The factor of safety for the heave sub calculation.
///
public double HeaveFactorOfSafety { get; private set; }
///
/// The calculated z-value for the Sellmeijer sub calculation.
///
public double SellmeijerZValue { get; private set; }
///
/// The factor of safety for the Sellmeijer sub calculation.
///
public double SellmeijerFactorOfSafety { get; private set; }
}
}