Skip to content

Commit

Permalink
Update version number to 4.6.0
Browse files Browse the repository at this point in the history
The version number is set in the top-level README, the compile script,
and the geogrid and metgrid global attributes.
  • Loading branch information
mgduda committed Jun 12, 2024
1 parent 560357b commit 006e1bb
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
WRF Pre-Processing System Version 4.5
WRF Pre-Processing System Version 4.6.0

http://www2.mmm.ucar.edu/wrf/users/

Expand Down
2 changes: 1 addition & 1 deletion compile
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ endif
# Print out WPS version, system info, and compiler/version
echo "============================================================================================== "
echo " "
echo Version 4.5
echo Version 4.6.0
echo " "
uname -a
echo " "
Expand Down
2 changes: 1 addition & 1 deletion geogrid/src/process_tile_module.F
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ subroutine process_tile(which_domain, grid_type, dynopt, &
end if

! Initialize the output module now that we have the corner point lats/lons
call output_init(which_domain, 'OUTPUT FROM GEOGRID V4.5', '0000-00-00_00:00:00', grid_type, dynopt, &
call output_init(which_domain, 'OUTPUT FROM GEOGRID V4.6.0', '0000-00-00_00:00:00', grid_type, dynopt, &
corner_lats, corner_lons, &
start_dom_i, end_dom_i, start_dom_j, end_dom_j, &
start_patch_i, end_patch_i, start_patch_j, end_patch_j, &
Expand Down
4 changes: 3 additions & 1 deletion metgrid/src/input_module.F
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,9 @@ subroutine read_global_attrs(title, start_date, grid_type, dyn_opt,
#endif

call ext_get_dom_ti_char('TITLE', title)
if (index(title,'GEOGRID V4.5') /= 0) then
if (index(title,'GEOGRID V4.6.0') /= 0) then
wps_version = 4.6
else if (index(title,'GEOGRID V4.5') /= 0) then
wps_version = 4.5
else if (index(title,'GEOGRID V4.4') /= 0) then
wps_version = 4.4
Expand Down
2 changes: 1 addition & 1 deletion metgrid/src/process_domain_module.F
Original file line number Diff line number Diff line change
Expand Up @@ -876,7 +876,7 @@ subroutine process_single_met_time(do_const_processing, &
! now we simply output every field from the storage module.
!

title = 'OUTPUT FROM METGRID V4.5'
title = 'OUTPUT FROM METGRID V4.6.0'

! Initialize the output module for this domain and time
call mprintf(.true.,LOGFILE,'Initializing output module.')
Expand Down

0 comments on commit 006e1bb

Please sign in to comment.