Skip to content

Commit

Permalink
Fixed error in previous commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
dustinswales committed Jan 6, 2020
1 parent 04ad9ed commit b679203
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions physics/radlw_main.f
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ subroutine rrtmg_lw_run &
& gasvmr_ch4, gasvmr_o2, gasvmr_co, gasvmr_cfc11, &
& gasvmr_cfc12, gasvmr_cfc22, gasvmr_ccl4, &
& icseed,aeraod,aerssa,sfemis,sfgtmp, &
& dzlyr,delpin,de_lgth,xlon,xlat, &
& dzlyr,delpin,de_lgth, lon, lat, &
& npts, nlay, nlp1, lprnt, cld_cf, lslwr, &
& hlwc,topflx,sfcflx,cldtau, & ! --- outputs
& HLW0,HLWB,FLXPRF, & ! --- optional
Expand Down Expand Up @@ -589,7 +589,7 @@ subroutine rrtmg_lw_run &
& cld_od
real (kind=kind_phys), dimension(npts), intent(in) :: sfemis, &
& sfgtmp, de_lgth, xlon, xlat
& sfgtmp, de_lgth, lon, lat
real (kind=kind_phys), dimension(npts,nlay,nbands),intent(in):: &
& aeraod, aerssa
Expand Down Expand Up @@ -1169,7 +1169,7 @@ subroutine rrtmg_lw_run &
do k=1,nlay
write(47,"(23f8.2)") plyr(iplon,k),clwp(k),relw(k),ciwp(k), &
& reiw(k),taucld(:,k),xlon(k),xlat(k)
& reiw(k),taucld(:,k),lon(iplon),lat(iplon)
enddo
Expand Down
4 changes: 2 additions & 2 deletions physics/radlw_main.meta
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@
kind = kind_phys
intent = in
optional = F
[xlon]
[lon]
standard_name = longitude
long_name = longitude
units = radians
Expand All @@ -216,7 +216,7 @@
kind = kind_phys
intent = in
optional = F
[xlat]
[lat]
standard_name = latitude
long_name = latitude
units = radians
Expand Down

0 comments on commit b679203

Please sign in to comment.