using Deltares.DamEngine.Calculators.KernelWrappers.Interfaces;
namespace Deltares.DamEngine.Calculators.KernelWrappers.DamPipingBligh
{
///
/// Input parameters for Piping bligh
///
///
public class DamPipingBlighInput : IKernelDataInput
{
///
/// Gets or sets the River level .
///
///
/// The h river.
///
public double HRiver { get; set; }
///
/// Gets or sets the head at exitpoint.
///
///
/// The h exit.
///
public double HExit { get; set; }
///
/// Gets or sets the reduction factor.
///
///
/// The rc.
///
public double Rc { get; set; }
///
/// Gets or sets the total thickness of cover layer .
///
///
/// The d total.
///
public double DTotal { get; set; }
///
/// Gets or sets the seepagelength.
///
///
/// The length of the seepage.
///
public double SeepageLength { get; set; }
///
/// Gets or sets the D70.
///
///
/// The D70.
///
public double D70 { get; set; }
///
/// Gets or sets a value indicating whether uplift occurs.
///
///
/// true if this instance is uplift; otherwise, false.
///
public bool IsUplift { get; set; }
}
}