basin_channel_output.f90 Source File


This file depends on

sourcefile~~basin_channel_output.f90~~EfferentGraph sourcefile~basin_channel_output.f90 basin_channel_output.f90 sourcefile~basin_module.f90 basin_module.f90 sourcefile~basin_channel_output.f90->sourcefile~basin_module.f90 sourcefile~channel_module.f90 channel_module.f90 sourcefile~basin_channel_output.f90->sourcefile~channel_module.f90 sourcefile~hydrograph_module.f90 hydrograph_module.f90 sourcefile~basin_channel_output.f90->sourcefile~hydrograph_module.f90 sourcefile~time_module.f90 time_module.f90 sourcefile~basin_channel_output.f90->sourcefile~time_module.f90 sourcefile~hydrograph_module.f90->sourcefile~basin_module.f90 sourcefile~hydrograph_module.f90->sourcefile~time_module.f90

Source Code

      subroutine basin_channel_output
      
      use time_module
      use basin_module
      use channel_module
      use hydrograph_module, only : sp_ob
      
      implicit none
             
      integer :: ich = 0  !none      |counter

      bch_d = chz

      !! sum all channel output
      do ich = 1, sp_ob%chan
        bch_d = bch_d + ch_d(ich)
        ch_d(ich) = chz
      end do

      bch_m = bch_m + bch_d
      
       !! daily print
       if (pco%day_print == "y" .and. pco%int_day_cur == pco%int_day) then
        if (pco%chan_bsn%d == "y") then
          write (2110,100) time%day, time%mo, time%day_mo, time%yrc, "       1", "     1", bsn%name, bch_d
          if (pco%csvout == "y") then
            write (2114,'(*(G0.3,:","))') time%day, time%mo, time%day_mo, time%yrc, "       1", "     1", bsn%name, bch_d
          end if 
        end if 
      end if

      !! monthly print
      if (time%end_mo == 1) then
        bch_y = bch_y + bch_m
        if (pco%chan_bsn%m == "y") then
          write (2111,100) time%day, time%mo, time%day_mo, time%yrc, "       1", "     1", bsn%name, bch_m
          if (pco%csvout == "y") then
            write (2115,'(*(G0.3,:","))') time%day, time%mo, time%day_mo, time%yrc, "       1", "     1", bsn%name, bch_m
          end if
        end if
        bch_m = chz
      end if

      !! yearly print
      if (time%end_yr == 1) then
        bch_a = bch_a + bch_y
        if (pco%chan_bsn%y == "y") then 
          write (2112,100) time%day, time%mo, time%day_mo, time%yrc, "       1", "     1", bsn%name, bch_y
          if (pco%csvout == "y") then
            write (2116,'(*(G0.3,:","))') time%day, time%mo, time%day_mo, time%yrc, "       1", "     1", bsn%name, bch_y
          end if
        end if
        
        bch_y = chz
      end if

      !! average annual print
      if (time%end_sim == 1 .and. pco%chan_bsn%a == "y") then
        bch_a = bch_a / time%yrs_prt
        write (2113,100) time%day, time%mo, time%day_mo, time%yrc, "       1", "     1", bsn%name, bch_a
        if (pco%csvout == "y") then
          write (2117,'(*(G0.3,:","))') time%day, time%mo, time%day_mo, time%yrc, "       1", "     1", bsn%name, bch_a
        end if
      end if

 100   format (4i6,2x,2a,2x,a17,f14.4,59(1x,e14.4))
      return
      
      end subroutine basin_channel_output