Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge 4.1.5 #46

Merged
merged 3 commits into from
Mar 29, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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:https://www2.mmm.ucar.edu/wrf/users/

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'
8 changes: 4 additions & 4 deletions phys/module_surface_driver.F
Original file line number Diff line number Diff line change
Expand Up @@ -3103,8 +3103,8 @@ SUBROUTINE surface_driver( &

ENDIF

if(iopt_run.eq.5) then
if(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 @@ -3119,8 +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
ENDIF

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