BesAsm.Swsp.PacSizingTool.Catchment.CorrectionFactor C# (CSharp) Method

CorrectionFactor() public method

Correction factor applied to tested infiltration rate
public CorrectionFactor ( ) : double
return double
        public double CorrectionFactor()
        {
            switch (_infiltrationTestType)
              {
            case InfiltrationTestType.OpenPitFallingHead:
              return 2;
            case InfiltrationTestType.EncasedFallingHead:
              return 2;
            case InfiltrationTestType.DoubleRingInfiltometer:
              return 1;
            default:
              throw new ArgumentException("Invalid enumerator");
              }
        }