channel_velocity_module.f90 Source File


Files dependent on this one

sourcefile~~channel_velocity_module.f90~~AfferentGraph sourcefile~channel_velocity_module.f90 channel_velocity_module.f90 sourcefile~ch_rtday.f90 ch_rtday.f90 sourcefile~ch_rtday.f90->sourcefile~channel_velocity_module.f90 sourcefile~ch_rtmusk.f90 ch_rtmusk.f90 sourcefile~ch_rtmusk.f90->sourcefile~channel_velocity_module.f90 sourcefile~ch_ttcoef.f90 ch_ttcoef.f90 sourcefile~ch_ttcoef.f90->sourcefile~channel_velocity_module.f90 sourcefile~channel_allo.f90 channel_allo.f90 sourcefile~channel_allo.f90->sourcefile~channel_velocity_module.f90 sourcefile~hru_allo.f90 hru_allo.f90 sourcefile~hru_allo.f90->sourcefile~channel_velocity_module.f90 sourcefile~sd_channel_control3.f90 sd_channel_control3.f90 sourcefile~sd_channel_control3.f90->sourcefile~channel_velocity_module.f90 sourcefile~sd_channel_read.f90 sd_channel_read.f90 sourcefile~sd_channel_read.f90->sourcefile~channel_velocity_module.f90 sourcefile~sd_hydsed_read.f90 sd_hydsed_read.f90 sourcefile~sd_hydsed_read.f90->sourcefile~channel_velocity_module.f90 sourcefile~sd_rating_curve.f90 sd_rating_curve.f90 sourcefile~sd_rating_curve.f90->sourcefile~channel_velocity_module.f90 sourcefile~smp_grass_wway.f90 smp_grass_wway.f90 sourcefile~smp_grass_wway.f90->sourcefile~channel_velocity_module.f90 sourcefile~ttcoef_wway.f90 ttcoef_wway.f90 sourcefile~ttcoef_wway.f90->sourcefile~channel_velocity_module.f90

Source Code

      module channel_velocity_module
    
      implicit none

      type channel_velocity_parameters
          real :: area = 0.             !m^2        |cross sectional area of flow at bankfull depth
          real :: vel_bf = 0.           !m^3/s      |flow rate when reach is at bankful depth
          real :: wid_btm = 0.          !m          |bottom width of main channel
          real :: dep_bf = 0.           !m          |depth of water when reach is at bankfull depth
          real :: velav_bf = 0.         !m/s        |average velocity when reach is at bankfull depth
          real :: celerity_bf = 0.      !m/s        |wave celerity when reach is at bankfull depth
          real :: st_dis = 0.           !hr         |storage time constant for reach at bankfull depth
          real :: vel_1bf = 0.          !m/s        |average velocity when reach is at 0.1 bankfull depth (low flow)
          real :: celerity_1bf = 0.     !m/s        |wave celerity when reach is at 0.1 bankfull depth (low flow)
          real :: stor_dis_1bf = 0.     !hr         |storage time constant for reach at 0.1 bankfull depth (low flow)
      end type channel_velocity_parameters
      type (channel_velocity_parameters), dimension(:), allocatable :: ch_vel
      type (channel_velocity_parameters), dimension(:), allocatable :: sd_ch_vel
      type (channel_velocity_parameters), dimension(:), allocatable :: grwway_vel
 
      end module channel_velocity_module