Skip to content
Draft
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
5 changes: 4 additions & 1 deletion phys/module_sf_urban.F
Original file line number Diff line number Diff line change
Expand Up @@ -823,7 +823,10 @@ SUBROUTINE urban(LSOLAR, & ! L
END IF

IF( ZDC+Z0C+2. >= ZA) THEN
FATAL_ERROR("ZDC + Z0C + 2m is larger than the 1st WRF level - Stop in subroutine urban - change ZDC and Z0C" )
!FATAL_ERROR("ZDC + Z0C + 2m is larger than the 1st WRF level - Stop in subroutine urban - change ZDC and Z0C" )
write(mesg,*) 'warning: ZDC higher than 1st WRF level, adjusting ',ZDC, ZA - Z0C - 4.
WRITE_MESSAGE(mesg)
ZDC = ZA - Z0C - 4.
END IF

IF(.NOT.LSOLAR) THEN
Expand Down