diff --git a/bld/namelist_files/use_cases/sd_waccm_sulfur.xml b/bld/namelist_files/use_cases/sd_waccm_sulfur.xml index 6d1055cd1f..4c2d827633 100644 --- a/bld/namelist_files/use_cases/sd_waccm_sulfur.xml +++ b/bld/namelist_files/use_cases/sd_waccm_sulfur.xml @@ -133,7 +133,7 @@ atm/cam/met/GEOS5 atm/cam/met/GEOS5_filenames_list_c120516.txt - + atm/cam/met/USGS-gtopo30_1.9x2.5_phys_geos5_c100929.nc diff --git a/src/control/cam_history.F90 b/src/control/cam_history.F90 index c91287899b..0d3a4dc823 100644 --- a/src/control/cam_history.F90 +++ b/src/control/cam_history.F90 @@ -2885,18 +2885,8 @@ subroutine fldlst () tape(t)%hlist(ffld+1) = tmp else if (tape(t)%hlist(ffld)%field%name == tape(t)%hlist(ffld+1)%field%name) then - if (tape(t)%hlist(ffld)%avgflag == tape(t)%hlist(ffld+1)%avgflag) then - write(errormsg,'(2a,2(a,i3),2a)') & - 'FLDLST: Duplicate field with the same averaging flag. Check your fincl list: ', & - trim(tape(t)%hlist(ffld)%field%name),', tape = ', t, ', ffld = ', ffld, & - ', flag = ', trim(tape(t)%hlist(ffld)%avgflag) - else - write(errormsg,'(2a,2(a,i3),4a)') & - 'FLDLST: Duplicate field with different averaging flags. Place on separate tapes: ', & - trim(tape(t)%hlist(ffld)%field%name),', tape = ', t, ', ffld = ', ffld, & - ', flag1 = ', trim(tape(t)%hlist(ffld)%avgflag), ', flag2 = ', & - trim(tape(t)%hlist(ffld+1)%avgflag) - end if + write(errormsg,'(2a,2(a,i3))') 'FLDLST: Duplicate field: ', & + trim(tape(t)%hlist(ffld)%field%name),', tape = ', t, ', ffld = ', ffld call endrun(errormsg) end if