BesAsm.Swsp.PacSizingTool.PacExecutor.CalculateSbuhPr C# (CSharp) Method

CalculateSbuhPr() public static method

Performs the SBUH calculations for the Pollution Reduction storm event
public static CalculateSbuhPr ( Catchment catchment ) : Hydrograph
catchment Catchment A Catchment object
return Hydrograph
        public static Hydrograph CalculateSbuhPr(Catchment catchment)
        {
            //Define design storms
              RainfallEvent pollutionReduction = RainfallEvent.GetScsOneAEvent("Pollution Reduction", 0.83);

              Hydrograph imperviousHydrographPR = SantaBarbaraUrbanHydrograph.CalculateHydrograph
            (catchment, pollutionReduction);

              return imperviousHydrographPR;
        }