lsu_read_elements.f90 Source File


This file depends on

sourcefile~~lsu_read_elements.f90~~EfferentGraph sourcefile~lsu_read_elements.f90 lsu_read_elements.f90 sourcefile~calibration_data_module.f90 calibration_data_module.f90 sourcefile~lsu_read_elements.f90->sourcefile~calibration_data_module.f90 sourcefile~hydrograph_module.f90 hydrograph_module.f90 sourcefile~lsu_read_elements.f90->sourcefile~hydrograph_module.f90 sourcefile~input_file_module.f90 input_file_module.f90 sourcefile~lsu_read_elements.f90->sourcefile~input_file_module.f90 sourcefile~maximum_data_module.f90 maximum_data_module.f90 sourcefile~lsu_read_elements.f90->sourcefile~maximum_data_module.f90 sourcefile~output_landscape_module.f90 output_landscape_module.f90 sourcefile~lsu_read_elements.f90->sourcefile~output_landscape_module.f90 sourcefile~basin_module.f90 basin_module.f90 sourcefile~hydrograph_module.f90->sourcefile~basin_module.f90 sourcefile~time_module.f90 time_module.f90 sourcefile~hydrograph_module.f90->sourcefile~time_module.f90

Source Code

      subroutine lsu_read_elements
   
      use input_file_module
      use maximum_data_module
      use calibration_data_module
      use hydrograph_module
      use output_landscape_module
      
      implicit none

      character (len=80) :: titldum = ""!           |title of file
      character (len=80) :: header = "" !           |header of file
      integer :: eof = 0              !           |end of file
      integer :: imax = 0             !none       |determine max number for array (imax) and total number in file
      integer :: nspu = 0             !           |
      logical :: i_exist              !none       |check to determine if file exists
      integer :: mcal = 0             !           |
      integer :: mlsu = 0             !none       |counter
      integer :: i = 0                !none       |counter
      integer :: k = 0                !           |
      integer :: isp = 0              !none       |counter
      integer :: ielem1 = 0           !none       |counter
      !integer :: iihru                !none       |counter
            
      imax = 0
      mcal = 0
            
    !! read landscape cataloging unit definitions for output (old subbasin output file)
    inquire (file=in_regs%def_lsu, exist=i_exist)
    if (i_exist .or. in_regs%def_lsu /= "null") then
      do
        open (107,file=in_regs%def_lsu)
        read (107,*,iostat=eof) titldum
        if (eof < 0) exit
        read (107,*,iostat=eof) mlsu
        if (eof < 0) exit
        read (107,*,iostat=eof) header
        if (eof < 0) exit
        
        !allocate subbasin (landscape unit) inputs and outputs
        allocate (lsu_out(0:mlsu))
                
        !allocate subbasin (landscape unit) inputs and outputs
        allocate (ruwb_d(0:mlsu))
        allocate (ruwb_m(0:mlsu))
        allocate (ruwb_y(0:mlsu))
        allocate (ruwb_a(0:mlsu))
        allocate (runb_d(0:mlsu))
        allocate (runb_m(0:mlsu))
        allocate (runb_y(0:mlsu))
        allocate (runb_a(0:mlsu))
        allocate (ruls_d(0:mlsu))
        allocate (ruls_m(0:mlsu))
        allocate (ruls_y(0:mlsu))
        allocate (ruls_a(0:mlsu))
        allocate (rupw_d(0:mlsu))
        allocate (rupw_m(0:mlsu))
        allocate (rupw_y(0:mlsu))
        allocate (rupw_a(0:mlsu))
        
      do i = 1, mlsu

        read (107,*,iostat=eof) k, lsu_out(i)%name, lsu_out(i)%area_ha, nspu      
        if (eof < 0) exit
        if (nspu > 0) then
          allocate (elem_cnt(nspu), source = 0)
          backspace (107)
          read (107,*,iostat=eof) k, lsu_out(i)%name, lsu_out(i)%area_ha, nspu, (elem_cnt(isp), isp = 1, nspu)
          if (eof < 0) exit

          call define_unit_elements (nspu, ielem1)
          
          allocate (lsu_out(i)%num(ielem1), source = 0)
          lsu_out(i)%num = defunit_num
          lsu_out(i)%num_tot = ielem1
          deallocate (defunit_num)
        else
          allocate (lsu_out(i)%num(0:0), source = 0)
          !!all hrus are in region 
          !allocate (lsu_out(i)%num(sp_ob%hru))
          !lsu_out(i)%num_tot = sp_ob%hru
          !do iihru = 1, sp_ob%hru
          !  lsu_out(i)%num(iihru) = iihru
          !end do      
        end if

      end do    ! i = 1, mreg

      db_mx%lsu_out = mlsu
      
      exit
      end do 
    end if	  

      !!read data for each element in all landscape cataloging units
      inquire (file=in_regs%ele_lsu, exist=i_exist)
      if (i_exist .or. in_regs%ele_lsu /= "null") then
      do
        open (107,file=in_regs%ele_lsu)
        read (107,*,iostat=eof) titldum
        if (eof < 0) exit
        read (107,*,iostat=eof) header
        if (eof < 0) exit
        imax = 0
          do while (eof == 0)
              read (107,*,iostat=eof) i
              if (eof < 0) exit
              imax = Max(i,imax)
          end do

        allocate (lsu_elem(imax))

        rewind (107)
        read (107,*,iostat=eof) titldum
        if (eof < 0) exit
        read (107,*,iostat=eof) header
        if (eof < 0) exit

        db_mx%lsu_elem = imax
        
        do isp = 1, imax
          read (107,*,iostat=eof) i
          if (eof < 0) exit
          backspace (107)
          read (107,*,iostat=eof) k, lsu_elem(i)%name, lsu_elem(i)%obtyp, lsu_elem(i)%obtypno,      &
                                    lsu_elem(i)%bsn_frac, lsu_elem(i)%ru_frac
          if (eof < 0) exit
        end do
        exit
      end do
      end if

      close (107)

      return
      end subroutine lsu_read_elements