Skip to content

Commit

Permalink
changed variable name.
Browse files Browse the repository at this point in the history
  • Loading branch information
dustinswales committed Feb 18, 2020
1 parent 723f740 commit c47706b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions physics/rrtmgp_lw_pre.F90
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ end subroutine rrtmgp_lw_pre_init
!> \section arg_table_rrtmgp_lw_pre_run
!! \htmlinclude rrtmgp_lw_pre.html
!!
subroutine rrtmgp_lw_pre_run (doLWrad, nCol, lon, lat, lsmask, zorl, snowd, sncovr, tsfc, &
subroutine rrtmgp_lw_pre_run (doLWrad, nCol, lon, lat, slmsk, zorl, snowd, sncovr, tsfc, &
nmtvr, hprime, lw_gas_props, sfc_emiss_byband, errmsg, errflg)

! Inputs
Expand All @@ -41,7 +41,7 @@ subroutine rrtmgp_lw_pre_run (doLWrad, nCol, lon, lat, lsmask, zorl, snowd, snco
real(kind_phys), dimension(nCol), intent(in) :: &
lon, & ! Longitude
lat, & ! Latitude
lsmask, & ! Land/sea/sea-ice mask
slmsk, & ! Land/sea/sea-ice mask
zorl, & ! Surface roughness length (cm)
snowd, & ! water equivalent snow depth (mm)
sncovr, & ! Surface snow are fraction (1)
Expand Down Expand Up @@ -72,7 +72,7 @@ subroutine rrtmgp_lw_pre_run (doLWrad, nCol, lon, lat, lsmask, zorl, snowd, snco
! #######################################################################################
! Call module_radiation_surface::setemis(),to setup surface emissivity for LW radiation.
! #######################################################################################
call setemis (lon, lat, lsmask, snowd, sncovr, zorl, tsfc, tsfc, hprime, nCol, sfc_emiss)
call setemis (lon, lat, slmsk, snowd, sncovr, zorl, tsfc, tsfc, hprime, nCol, sfc_emiss)

! Assign same emissivity to all bands
do iBand=1,lw_gas_props%get_nband()
Expand Down
2 changes: 1 addition & 1 deletion physics/rrtmgp_lw_pre.meta
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
kind = kind_phys
intent = in
optional = F
[lsmask]
[slmsk]
standard_name = sea_land_ice_mask_real
long_name = landmask: sea/land/ice=0/1/2
units = flag
Expand Down

0 comments on commit c47706b

Please sign in to comment.