namespace Ringtoets.Piping.Calculation.SubCalculator { /// /// Interface with operations for performing an piezometric head at exit sub calculation. /// public interface IPiezoHeadCalculator { /// /// Sets the piezometric head at polder parameter. /// double PhiPolder { set; } /// /// Sets the damping factor at exit parameter. /// double RExit { set; } /// /// Sets the assessment level parameter. /// double HRiver { set; } /// /// Gets the piezometric head exit result. /// double PhiExit { get; } /// /// Performs the piezomteric head at exit calculation. /// void Calculate(); } }