Skip to content

Commit

Permalink
Update version number to 4.4
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 Apr 19, 2022
1 parent 13eb730 commit 77d2cc3
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.3.1
WRF Pre-Processing System Version 4.4

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.3.1
echo Version 4.4
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.3.1', '0000-00-00_00:00:00', grid_type, dynopt, &
call output_init(which_domain, 'OUTPUT FROM GEOGRID V4.4', '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.3.1') /= 0) then
if (index(title,'GEOGRID V4.4') /= 0) then
wps_version = 4.4
else if (index(title,'GEOGRID V4.3.1') /= 0) then
wps_version = 4.31
else if (index(title,'GEOGRID V4.3') /= 0) then
wps_version = 4.3
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.3.1'
title = 'OUTPUT FROM METGRID V4.4'

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

0 comments on commit 77d2cc3

Please sign in to comment.