Skip to content

Commit

Permalink
snow grain radius bug fix (#412)
Browse files Browse the repository at this point in the history
  • Loading branch information
eclare108213 authored Nov 16, 2022
1 parent 18fc1c9 commit 5bf584f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion columnphysics/icepack_shortwave.F90
Original file line number Diff line number Diff line change
Expand Up @@ -3592,7 +3592,7 @@ subroutine shortwave_dEdd_set_snow(nslyr, R_snw, &

do ks = 1, nslyr
rsnw(ks) = max(rsnw_fall,rsnow(ks))
rsnw(ks) = min(rsnw_tmax,rsnow(ks))
rsnw(ks) = min(rsnw_tmax,rsnw (ks))
rhosnw(ks) = rhos
enddo

Expand Down

0 comments on commit 5bf584f

Please sign in to comment.