Skip to content

Commit

Permalink
Replaced print* and stop.
Browse files Browse the repository at this point in the history
  • Loading branch information
emkemp committed May 5, 2021
1 parent c4592b7 commit 5c7b175
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ subroutine jules53_qc_soilmobs(n,k,OBS_State)
! !USES:
use ESMF
use LIS_coreMod
use LIS_logMod, only : LIS_verify
use LIS_logMod, only : LIS_verify, LIS_logunit, LIS_endrun
use LIS_constantsMod, only : LIS_CONST_TKFRZ
use LIS_DAobservationsMod
use jules53_lsmMod
Expand Down Expand Up @@ -199,8 +199,8 @@ subroutine jules53_qc_soilmobs(n,k,OBS_State)
!MN:fveg is used for 12-month green vegetation fraction (i.e., noah33_struc(n)%noah(:)%shdfac)
!print*,'l_aggregate', l_aggregate
if(.NOT. l_aggregate) then
print*,'Please set the l_aggregate to .true. in the jules_surface.nml '
stop
write(LIS_logunit,*)'Please set the l_aggregate to .true. in the jules_surface.nml '
call LIS_endrun()
else
do l=1,5 !Broadleaf trees, Needleleaf trees, C3 (temperate) grass, C4 (tropical) grass, Shrubs
fveg(t) = fveg(t) + jules53_struc(n)%jules53(t)%surft_frac(l)
Expand Down

0 comments on commit 5c7b175

Please sign in to comment.