Skip to content

Commit

Permalink
Merge pull request ufs-community#113 from DusanJovic-NOAA/corner_flag…
Browse files Browse the repository at this point in the history
…s_initialization

Initialize {sw,se,nw,ne}_corner to .false. in model/fv_arrays.F90
  • Loading branch information
laurenchilutti authored Jun 21, 2021
2 parents 3720aea + bf0630f commit a2a43f8
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 a2a43f8

Please sign in to comment.