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

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.
 
Top