Skip to content

Commit

Permalink
Update WPS version to 3.9.0.1 (#43)
Browse files Browse the repository at this point in the history
This commit updates the README file, as well as the version number
that is stored as a global attribute in the geogrid and metgrid output.
  • Loading branch information
mgduda authored Jul 13, 2017
1 parent 33fefe1 commit 358dc13
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 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 3.9 (17 April 2017)
WRF Pre-Processing System Version 3.9.0.1 (13 July 2017)

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

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 @@ -300,7 +300,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 V3.9', '0000-00-00_00:00:00', grid_type, dynopt, &
call output_init(which_domain, 'OUTPUT FROM GEOGRID V3.9.0.1', '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 V3.9') /= 0) then
if (index(title,'GEOGRID V3.9.0.1') /= 0) then
wps_version = 3.901
else if (index(title,'GEOGRID V3.9') /= 0) then
wps_version = 3.9
else if (index(title,'GEOGRID V3.8.1') /= 0) then
wps_version = 3.81
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 V3.9'
title = 'OUTPUT FROM METGRID V3.9.0.1'

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

0 comments on commit 358dc13

Please sign in to comment.