From 006e1bb5b150c909f41b5e9043b924f6ea5bec0d Mon Sep 17 00:00:00 2001 From: Michael Duda Date: Fri, 7 Jun 2024 14:11:50 -0600 Subject: [PATCH] Update version number to 4.6.0 The version number is set in the top-level README, the compile script, and the geogrid and metgrid global attributes. --- README | 2 +- compile | 2 +- geogrid/src/process_tile_module.F | 2 +- metgrid/src/input_module.F | 4 +++- metgrid/src/process_domain_module.F | 2 +- 5 files changed, 7 insertions(+), 5 deletions(-) diff --git a/README b/README index b86bdc52..4b4a8ff7 100644 --- a/README +++ b/README @@ -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/ diff --git a/compile b/compile index ba92d201..dfee3b5d 100755 --- a/compile +++ b/compile @@ -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 " " diff --git a/geogrid/src/process_tile_module.F b/geogrid/src/process_tile_module.F index 1fe93038..82257f50 100644 --- a/geogrid/src/process_tile_module.F +++ b/geogrid/src/process_tile_module.F @@ -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, & diff --git a/metgrid/src/input_module.F b/metgrid/src/input_module.F index 40abbd2f..617f8fcf 100644 --- a/metgrid/src/input_module.F +++ b/metgrid/src/input_module.F @@ -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 diff --git a/metgrid/src/process_domain_module.F b/metgrid/src/process_domain_module.F index 0d6afdd9..18c44dc9 100644 --- a/metgrid/src/process_domain_module.F +++ b/metgrid/src/process_domain_module.F @@ -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.')