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

PerformSbuhCalcs() public static method

Executes only the SBUH calculations.
public static PerformSbuhCalcs ( Catchment catchment ) : PacResults
catchment Catchment The catchment to calculate the SBUH results.
return PacResults
        public static PacResults PerformSbuhCalcs(Catchment catchment)
        {
            Facility dummyFacility = new Facility(FacilityType.Basin, FacilityConfiguration.A, catchment)
              {
              BottomAreaSqFt = 100,
              BottomWidthFt = 10,
              SideSlopeRatio = 3,
              StorageDepth1In = 9,
              GrowingMediumDepthIn = 18,
              FreeboardIn = 3,
              Shape = FacilityShape.Rectangle
              };
              return PerformCalculations(catchment, dummyFacility, 1);
        }