Scheduled Downtime
On Tuesday 24 October 2023 @ 5pm MT the forums will be in read only mode in preparation for the downtime. On Wednesday 25 October 2023 @ 5am MT, this website will be down for maintenance and expected to return online later in the morning.
Normal Operations
The forums are back online with normal operations. If you notice any issues or errors related to the forums, please reach out to help@ucar.edu

error occurred when generating daily outputs

xgao304

Member
Dear Sir:

I am using cesm2.1.3 and able to conduct CLM5 BGC crop regional simulations at a high resolution (0.1 degree) using our in-house forcing.
It works well when generating the default monthly output. However, when I tried to add some daily output in auxiliary history file streams,
no output has been generated with an error message.

I am attached all the log files, the command I am using, and the user_nl_clm. I am not sure what caused the error. Could you help?

Thanks.

----------------------

command:

CASE_DIR=/net/fs05/d1/$USER/cesm2.1.3/cases/BgcCrop2000_BANG_HisD
MYDATA_DIR=/net/fs05/d1/xgao/cesm2.1.3/cases/sim_setup/Bangladesh/domain_HisMRCM
create_newcase --case $CASE_DIR --compset 2000_DATM%GSWP3v1_CLM50%BGC-CROP_SICE_SOCN_SROF_SGLC_SWAV \
--res CLM_USRDAT --user-mods-dir $MYDATA_DIR --machine svante --compiler intel \
--run-unsupported


user_nl_clm:

fsurdat = '/net/fs05/d1/xgao/cesm2.1.3/cases/sim_setup/Bangladesh/domain_HisMRCM/surfdata_0.1x0.1_hist_78pfts_CMIP6_simyr2005_BANGcrews_c240211.nc'
hist_fincl2 = 'BTRAN2','CPHASE','DSL','FH2OSFC','FINUNDATED',
'H2OSFC','H2OSOI','TSOI','TSOI_10CM','ZWT'
hist_fincl3 = 'BTRAN2','CPHASE','DSL','FH2OSFC','FINUNDATED',
'H2OSFC','H2OSOI','TSOI','TSOI_10CM','ZWT'
hist_dov2xy = .true., .false., .false.
hist_type1d_pertape = ' ', 'COLS', 'PFTS'
hist_avgflag_pertape = 'A','A','A'
hist_nhtfrq = 0, -24, -24
 

Attachments

  • atm.log.320213.241030-202438.txt
    12.7 KB · Views: 0
  • cesm.log.320213.241030-202438.txt
    238.6 KB · Views: 1
  • cpl.log.320213.241030-202438.txt
    53.5 KB · Views: 0
  • lnd.log.320213.241030-202438.txt
    196.9 KB · Views: 0

oleson

Keith Oleson
CSEG and Liaisons
Staff member
At least one of the variables you are requesting, DSL, is not actually available at the pft level. It is a column-level variable:

this%dsl_col(begc:endc) = spval
call hist_addfld1d (fname='DSL', units='mm', &
avgflag='A', long_name='dry surface layer thickness', &
ptr_col=this%dsl_col)

This can cause unexpected behavior:

 
Top