Skip to content
Merged
Changes from 2 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
10 changes: 10 additions & 0 deletions dyn_em/module_initialize_real.F
Original file line number Diff line number Diff line change
Expand Up @@ -665,6 +665,16 @@ SUBROUTINE init_domain_rk ( grid &
! coarse grid since we are going to make the interface consistent
! in the model betwixt the CG and FG domains.

! An important point is to inform the user if their request cannot
! be satisfied. Do not skip over this quietly.

IF ( ( config_flags%smooth_cg_topo ) .AND. &
( internal_time_loop .EQ. 1 ) .AND. &
( grid%id .EQ. 1 ) .AND. &
( flag_soilhgt .NE. 1) ) THEN
CALL wrf_error_fatal(' --- ERROR: NML option smooth_cg_topo=T, but found no soil elevation data in metgrid files')
Comment thread
davegill marked this conversation as resolved.
Outdated
END IF

IF ( ( config_flags%smooth_cg_topo ) .AND. &
( internal_time_loop .EQ. 1 ) .AND. &
( grid%id .EQ. 1 ) .AND. &
Expand Down