Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/release-v4.1.5'
Browse files Browse the repository at this point in the history
  • Loading branch information
smileMchen committed Mar 10, 2020
2 parents f3d6c32 + bf5b72b commit 7df4461
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
WRF Model Version 4.1.4
WRF Model Version 4.1.5

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

Expand Down
4 changes: 2 additions & 2 deletions dyn_em/module_first_rk_step_part1.F
Original file line number Diff line number Diff line change
Expand Up @@ -437,8 +437,8 @@ SUBROUTINE first_rk_step_part1 ( grid , config_flags &
!gmm halo of wtd and riverflow for leafhydro
#ifdef DM_PARALLEL
IF ( config_flags%sf_surface_physics.eq.NOAHMPSCHEME ) THEN
IF ( config_flags%opt_run.eq.5.and.mod(grid%itimestep,grid%STEPWTD).eq.0 ) THEN
IF ( ( config_flags%sf_surface_physics.EQ.NOAHMPSCHEME ) .and. ( config_flags%opt_run.EQ.5 ) ) THEN
IF ( mod(grid%itimestep,grid%STEPWTD).EQ.0 ) THEN
# include "HALO_EM_HYDRO_NOAHMP.inc"
ENDIF
ENDIF
Expand Down
2 changes: 1 addition & 1 deletion inc/version_decl
Original file line number Diff line number Diff line change
@@ -1 +1 @@
CHARACTER (LEN=*), PARAMETER :: release_version = 'V4.1.4'
CHARACTER (LEN=*), PARAMETER :: release_version = 'V4.1.5'
6 changes: 4 additions & 2 deletions phys/module_surface_driver.F
Original file line number Diff line number Diff line change
Expand Up @@ -3103,7 +3103,8 @@ SUBROUTINE surface_driver( &

ENDIF

if(iopt_run.eq.5.and.mod(itimestep,STEPWTD).eq.0)then
IF ( iopt_run .EQ. 5 ) THEN
IF ( MOD(itimestep,STEPWTD) .EQ. 0 ) THEN ! STEPWTD always and only non-zero for iopt_run == 5
CALL wrf_debug( 100, 'calling WTABLE' )

!gmm update wtable from lateral flow and shed water to rivers
Expand All @@ -3118,7 +3119,8 @@ SUBROUTINE surface_driver( &
ims,ime, jms,jme, kms,kme, &
i_start(ij),i_end(ij), j_start(ij),j_end(ij), kts,kte )

endif
ENDIF
ENDIF

call seaice_noah( SEAICE_ALBEDO_OPT, SEAICE_ALBEDO_DEFAULT, SEAICE_THICKNESS_OPT, &
& SEAICE_THICKNESS_DEFAULT, SEAICE_SNOWDEPTH_OPT, &
Expand Down

0 comments on commit 7df4461

Please sign in to comment.