How to active some history field?

Dear all,

If I select the CLM_SP and want to output the surface albedo and other variables that default 'inactive' in the histFldsMod.F90 file. How can I do this?

I have tried to delete the "default 'inactive'", but it didn't work.

Below is the error in the lnd.log file:

htapes_fieldlist ERROR: ALBD in fincl( 3 ) for history tape 1 not found
ENDRUN: called without a message string
htapes_fieldlist ERROR: ALBI in fincl( 4 ) for history tape 1 not found
ENDRUN: called without a message string
htapes_fieldlist ERROR: ALBGRD in fincl( 5 ) for history tape 1 not found
ENDRUN: called without a message string
htapes_fieldlist ERROR: ALBGRI in fincl( 6 ) for history tape 1 not found
ENDRUN: called without a message string

Best Regards!

Xujun
 

erik

Erik Kluzek
CSEG and Liaisons
Staff member
OK. The issue is that in histFldsMod.F90 the call to addfld for the albedo's is inside a

#ifdef CN
#endif

block of code, so it will only work for CLMCN and NOT for CLMSP. You need to move the call outside of the CN #if block to get it to work with CLMSP.
 
Back
Top