using Deltares.DamEngine.Calculators.KernelWrappers.Interfaces; namespace Deltares.DamEngine.Calculators.KernelWrappers.DamPipingSellmeijer4Forces { public class DamPipingSellmeijer4ForcesInput : 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 height of the aquifer. /// /// /// The height of the aquifer. /// public double AquiferHeight { 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 the whites constant. /// /// /// The whites constant. /// public double WhitesConstant { get; set; } /// /// Gets or sets the bedding angle. /// /// /// The bedding angle. /// public double BeddingAngle { get; set; } /// /// Gets or sets the permeability kx. /// /// /// The permeability kx. /// public double PermeabilityKx { get; set; } /// /// Gets or sets the water viscosity. /// /// /// The water viscosity. /// public double WaterViscosity { get; set; } } }