Skip to content

Commit

Permalink
Correct a bug in the HAILCAST diagnostic code (units issue) (#320)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaymes-kenyon committed Mar 2, 2024
1 parent 6663459 commit f060e85
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tools/module_diag_hailcast.F90
Original file line number Diff line number Diff line change
Expand Up @@ -1092,8 +1092,7 @@ SUBROUTINE hailstone_driver ( ii,jj,TCA, h1d, ht, PA, rho1d,&
IF (D.GT.0.254) D = 0. !just consider missing for now if > 10 in

!assign hail size in mm for output
!dhails(i) = D * 1000
dhails(i) = D
dhails(i) = D * 1000

ENDDO !end embryo size loop

Expand Down

0 comments on commit f060e85

Please sign in to comment.