swr_drains.f90 Source File


This file depends on

sourcefile~~swr_drains.f90~~EfferentGraph sourcefile~swr_drains.f90 swr_drains.f90 sourcefile~basin_module.f90 basin_module.f90 sourcefile~swr_drains.f90->sourcefile~basin_module.f90 sourcefile~hru_module.f90 hru_module.f90 sourcefile~swr_drains.f90->sourcefile~hru_module.f90 sourcefile~hydrograph_module.f90 hydrograph_module.f90 sourcefile~swr_drains.f90->sourcefile~hydrograph_module.f90 sourcefile~reservoir_module.f90 reservoir_module.f90 sourcefile~swr_drains.f90->sourcefile~reservoir_module.f90 sourcefile~soil_module.f90 soil_module.f90 sourcefile~swr_drains.f90->sourcefile~soil_module.f90 sourcefile~time_module.f90 time_module.f90 sourcefile~swr_drains.f90->sourcefile~time_module.f90 sourcefile~hydrograph_module.f90->sourcefile~basin_module.f90 sourcefile~hydrograph_module.f90->sourcefile~time_module.f90

Source Code

	subroutine swr_drains

!!    ~ ~ ~ PURPOSE ~ ~ ~
!!    this subroutine finds the effective lateral hydraulic conductivity 
!!    and computes drainage or subirrigation flux

!!    ~ ~ ~ INCOMING VARIABLES ~ ~ ~
!!    name        |units         |definition
!!    ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
!!    drain_co(:) |mm/day        |drainage coefficient 
!!    ddrain(:)   |mm            |depth of drain tube from the soil surface							 
!!    latksatf(:) |none          |multiplication factor to determine conk(j1,j) from sol_k(j1,j) for HRU
!!    pc(:)       |mm/hr         |pump capacity (default pump capacity = 1.042mm/hr or 25mm/day)
!!    sdrain(:)   |mm            |distance between two drain tubes or tiles
!!    stmaxd(:)   |mm            |maximum surface depressional storage for the day in a given HRU
!!    ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~

!!    ~ ~ ~ OUTGOING VARIABLES ~ ~ ~
!!    name        |units         |definition
!!    ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
!!    qtile       |mm H2O        |drainage tile flow in soil profile for the day

!!    ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~

!!    ~ ~ ~ LOCAL DEFINITIONS ~ ~ ~
!!    name        |units         |definition
!!    ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
!!    ddarnp      |mm            |a variable used to indicate distance slightly less
!!                               |than ddrain. Used to prevent calculating subirrigation
!!                               |when water table is below drain bottom or when it is empty
!!    i           |none          |counter
!!    w           |mm            |thickness of saturated zone in layer considered
!!    ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~

!!    ~ ~ ~ SUBROUTINES/FUNCTIONS CALLED ~ ~ ~
!!    Intrinsic: 
!!    SWAT: depstor

!!    ~ ~ ~ ~ ~ ~ END SPECIFICATIONS ~ ~ ~ ~ ~ ~

      use basin_module
      use hydrograph_module
      use hru_module, only : hru, ihru, wnan, stmaxd, surfq, etday, inflpcp, &  
           precip_eff, qtile, wt_shall
      use soil_module
      use time_module
      use reservoir_module
      
      implicit none

      integer :: j1 = 0          !none          |counter
      integer :: j = 0           !none          |HRU number 
      integer :: m = 0           !none          |counter
      real:: cone = 0.           !mm/hr         |effective saturated lateral conductivity - based
                                 !              |on water table depth and conk/sol_k of layers
      real:: depth = 0.          !mm            |actual depth from surface to impermeable layer 
      real:: dg = 0.             !mm            |depth of soil layer
      real:: ad = 0.             !              | 
      real:: ap = 0.             !              |
      real:: hdrain = 0.         !mm            |equivalent depth from water surface in drain tube to
                                 !              |impermeable layer
      real:: gee = 0.            !none          |factor -g- in Kirkham equation
      real:: gee1 = 0.           !              | 
      real:: gee2 = 0.           !              | 
      real:: gee3 = 0.           !              | 
      real:: pi = 0.             !              |
      real:: k2 = 0.             !              |
      real:: k3 = 0.             !              |
      real:: k4 = 0.             !              |
      real:: k5 = 0.             !              |
      real:: k6 = 0.             !              |
      real :: y1 = 0.            !mm            |dummy variable for dtwt 
      integer :: isdr = 0        !              |
      real :: above = 0.         !mm            |depth of top layer considered
      real :: x = 0.             !              |
      real :: sum = 0.           !              | 
      real :: deep = 0.          !mm            |total thickness of saturated zone
      real :: xx = 0.            !              |
      real :: hdmin = 0.         !              |
      real :: storro = 0.        !mm            |surface storage that must b
                                 !              |can move to the tile drain tube
      real :: stor = 0.          !mm            |surface storage for the day in a given HRU
      real :: dflux = 0.         !mm/hr         |drainage flux
      real :: em = 0.            !mm            |distance from water level in the drains to water table 
                                 !              |at midpoint: em is negative during subirrigation
      real :: ddranp = 0.        !              |
      real :: dot = 0.           !mm            |actual depth from impermeable layer to water level
                                 !              |above drain during subsurface irrigation
      real :: cosh
      real :: cos
      
      !! initialize variables

      j = ihru
      isdr = hru(j)%tiledrain
      wnan = 0
      y1 = soil(j)%zmx - wt_shall 
      if (y1 > soil(j)%zmx) y1 = soil(j)%zmx
      above = 0.
      pi = 22./7.
      gee1 =0.

!! find effective lateral hydraulic conductivity for the profile in hru j
      do j1 = 1, soil(j)%nly
        if(y1 > soil(j)%phys(j1)%d) then  
          wnan(j1) = 0.
        else
	    wnan(j1) = soil(j)%phys(j1)%d - y1  
	    x = soil(j)%phys(j1)%d -  above  
          if(wnan(j1) > x) wnan(j1) = x
	  end if
	  above = soil(j)%phys(j1)%d
      end do
      sum = 0.
      deep = 0.
      do j1=1,soil(j)%nly
        soil(j)%ly(j1)%conk = soil(j)%phys(j1)%k * hru(j)%sdr%latksat !Daniel 2/26/09
        sum = sum + wnan(j1) * soil(j)%ly(j1)%conk
        deep = deep + wnan(j1)
      end do
      if((deep <= 0.001).or.(sum <= 0.001)) then
        sum = 0.
        deep = 0.001
        do j1=1,soil(j)%nly
		  sum = sum + soil(j)%ly(j1)%conk * soil(j)%phys(j1)%thick !Daniel 10/09/07
		  deep = deep + dg   !Daniel 10/09/07
        end do
	  cone=sum/deep
	else
	  cone=sum/deep
      end if

      !!	calculate parameters hdrain and gee1
      ad = soil(j)%zmx - hru(j)%lumv%sdr_dep
      ad = Max (10., ad)
	  ap = 3.55 - ((1.6 * ad) / hru(j)%sdr%dist) + 2 *                   &
                                           ((2 / hru(j)%sdr%dist)**2)
	  if (ad / hru(j)%sdr%dist < 0.3) then
        hdrain= ad / (1 + ((ad / hru(j)%sdr%dist) * (((8 / pi) *       &
     	    Log(ad / hru(j)%sdr%radius) - ap))))
      else
        hdrain = ad
          !hdrain = (hru(j)%sdr%dist * pi) / (8 * ((log(hru(j)%sdr%dist /  &
          !         hru(j)%sdr%radius)/ log(e)) - 1.15))
	  end if
      !! calculate Kirkham G-Factor, gee
        k2 = tan((pi * ((2. * ad) - hru(j)%sdr%radius)) / (4. * soil(j)%zmx))
        k3 = tan((pi * hru(j)%sdr%radius) / (4. * soil(j)%zmx))
      do m=1,2
         k4 = (pi * m * hru(j)%sdr%dist) / (2. * soil(j)%zmx)
         k5 = (pi * hru(j)%sdr%radius) / (2. * soil(j)%zmx)
         k6 = (pi * (2. * ad - hru(j)%sdr%radius)) / (2. * soil(j)%zmx)
         gee2 = (cosh(k4) + cos(k5)) / (cosh(k4) - cos(k5))
         gee3 = (cosh(k4) - cos(k6)) / (cosh(k4) + cos(k6))
         gee1 = gee1 + Log(gee2 * gee3)
      end do
       xx = k2 / k3
       if (xx < 1.) then
         gee = 1.
       else
         gee = 2 * Log(k2 / k3) + 2 * gee1
       end if
       if (gee < 1.) gee = 1.
       if (gee > 12.) gee = 12.

      !! calculate drainage and subirrigation flux section
      !	drainage flux for ponded surface
      depth = hru(j)%lumv%sdr_dep + hdrain
      hdmin = depth - hru(j)%lumv%sdr_dep
      call swr_depstor ! dynamic stmaxd(j): compute current HRU stmaxd based 
	           ! on cumulative rainfall and cum. intensity
      storro = 0.2 * stmaxd(j) !surface storage that must be filled before surface
                   !water can move to the tile drain tube
      !! Determine surface storage for the day in a given HRU (stor)
        !initialize stor on the beginning day of simulation, Daniel 9/20/2007
      if (time%yrs == 1 .and. time%day == time%day_start) then 
        stor= 0.
      end if
      if (wet_ob(j)%area_ha <= 0.) then ! determine stor
        stor = precip_eff - inflpcp - etday !Daniel 10/05/07
        if(surfq(j) > 0.0) stor = stmaxd(j)
      else
        stor = wet(j)%flo / (wet_ob(j)%area_ha * 1000.)
      endif
      if(hdrain < hdmin) hdrain=hdmin
      if((stor > storro).and.(y1 < 5.0)) then
        dflux= (12.56637 * 24.0 * cone* (depth - hdrain + stor)) / (gee * hru(j)%sdr%dist) !eq.10
        if (dflux > hru(j)%sdr%drain_co) dflux = hru(j)%sdr%drain_co !eq.11
      else
!	subirrigation flux 
        em = depth - y1 - hdrain
        if(em < -1.0) then
!!          ddranp=ddrain(j)-1.0
          ddranp = hru(j)%lumv%sdr_dep - 1.0
          dot = hdrain + soil(j)%zmx - depth
          dflux = 4.0 * 24.0 * cone * em * hdrain * (2.0 + em / dot) / hru(j)%sdr%dist**2 
          if ((depth-hdrain) >= ddranp) dflux = 0.
          if (abs(dflux) > hru(j)%sdr%pumpcap) then
            dflux = - hru(j)%sdr%pumpcap * 24.0 
          end if
!	drainage flux - for WT below the surface and for ponded depths < storro (S1)
        else
        dflux = 4.0 * 24.0 * cone * em * (2.0 * hdrain + em) / hru(j)%sdr%dist**2 !eq.5
        if(dflux > hru(j)%sdr%drain_co) dflux = hru(j)%sdr%drain_co !eq.11
        if(dflux < 0.) dflux=0.
        if(em < 0.) dflux=0.
        end if
	end if
 	qtile = dflux

       return
       end subroutine swr_drains