Skip to content

Commit

Permalink
Initialize {sw,se,nw,ne}_corner to .false in model/fv_arrays.F90
Browse files Browse the repository at this point in the history
  • Loading branch information
DusanJovic-NOAA committed Jun 11, 2021
1 parent 3720aea commit bf0630f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion model/fv_arrays.F90
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ module fv_arrays_mod

real(kind=R_GRID) :: global_area
logical :: g_sum_initialized = .false. !< Not currently used but can be useful
logical:: sw_corner, se_corner, ne_corner, nw_corner
logical:: sw_corner = .false., se_corner = .false., ne_corner = .false., nw_corner = .false.

real(kind=R_GRID) :: da_min, da_max, da_min_c, da_max_c

Expand Down

0 comments on commit bf0630f

Please sign in to comment.