dr_module.f90 Source File


Files dependent on this one

sourcefile~~dr_module.f90~~AfferentGraph sourcefile~dr_module.f90 dr_module.f90 sourcefile~constit_hyd_mult.f90 constit_hyd_mult.f90 sourcefile~constit_hyd_mult.f90->sourcefile~dr_module.f90 sourcefile~dr_db_read.f90 dr_db_read.f90 sourcefile~dr_db_read.f90->sourcefile~dr_module.f90 sourcefile~dr_read_hmet.f90 dr_read_hmet.f90 sourcefile~dr_read_hmet.f90->sourcefile~dr_module.f90 sourcefile~dr_read_om.f90 dr_read_om.f90 sourcefile~dr_read_om.f90->sourcefile~dr_module.f90 sourcefile~dr_read_path.f90 dr_read_path.f90 sourcefile~dr_read_path.f90->sourcefile~dr_module.f90 sourcefile~dr_read_pest.f90 dr_read_pest.f90 sourcefile~dr_read_pest.f90->sourcefile~dr_module.f90 sourcefile~dr_read_salt.f90 dr_read_salt.f90 sourcefile~dr_read_salt.f90->sourcefile~dr_module.f90 sourcefile~hru_fr_change.f90 hru_fr_change.f90 sourcefile~hru_fr_change.f90->sourcefile~dr_module.f90 sourcefile~ru_read_elements.f90 ru_read_elements.f90 sourcefile~ru_read_elements.f90->sourcefile~dr_module.f90 sourcefile~treat_read_om.f90 treat_read_om.f90 sourcefile~treat_read_om.f90->sourcefile~dr_module.f90

Source Code

      module dr_module
    
      implicit none
                    
      integer, dimension(:), allocatable :: dr_om_num
      integer, dimension(:), allocatable :: dr_pest_num
      integer, dimension(:), allocatable :: dr_path_num
      integer, dimension(:), allocatable :: dr_hmet_num
      integer, dimension(:), allocatable :: dr_salt_num
      character(len=16), dimension(:), allocatable :: dr_om_name
      character(len=16), dimension(:), allocatable :: dr_pest_name
      character(len=16), dimension(:), allocatable :: dr_path_name
      character(len=16), dimension(:), allocatable :: dr_hmet_name
      character(len=16), dimension(:), allocatable :: dr_salt_name
    
      type delivery_ratio_datafiles       
        character(len=16) :: name = ""
        character(len=16) :: om_file = ""
        character(len=16) :: pest_file = ""
        character(len=16) :: path_file = ""
        character(len=16) :: hmet_file = ""
        character(len=16) :: salts_file = ""
      end type delivery_ratio_datafiles
      type (delivery_ratio_datafiles), dimension(:),allocatable, save :: dr_db
      
      end module dr_module