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

CESM1.0.6 - FWSC does not run with the default namelist

santos

Member
Affected Releases: CESM1.0.6 only

**IMPORTANT**: This bug applies to the FWSC compset only! The new compsets (e.g. B1850WSCCN) are not affected.

(bugzilla 1971)

In CESM 1.0.6, SC-WACCM cases no longer calculate age of air or circulation diagnostics by default. Due to an oversight, the default "fincl" entries still include history diagnostics for these features. This results in a runtime error.

There are two workarounds, depending on whether or not the user wants these features enabled:

1) To enable age of air and circulation diagnostics, first add this flag to CAM_CONFIG_OPTS:

-age_of_air_trcs

Then add this entry to your namelist:

do_circulation_diags = .true.

2) To disable these diagnostics completely, you need to remove HORZ, VERT, and all AOA and circulation fields from the "fincl" variables. The following settings will do this while keeping all the other defaults:

fincl1 = 'CLDHGH', 'CLDLOW', 'CLDMED', 'CLDTOT', 'CLOUD', 'DTCOND', 'DTV', 'DUV', 'DVV', 'EKGWSPEC', 'FLNS', 'FLNSC',
'FLNT', 'FLNTC', 'FSDS', 'FSNS', 'FSNSC', 'FSNT', 'FSNTC', 'OCNFRAC', 'OMEGA', 'PHIS', 'PRECC', 'PRECL', 'PS', 'Q',
'QFLX', 'QPERT', 'QRL', 'QRLNLTE', 'QRS', 'RELHUM', 'SHFLX', 'SOLIN', 'SRFRAD', 'SWCF', 'QRL_TOT', 'QRS_TOT',
'PSL', 'HNO3_STS', 'HNO3_NAT', 'HNO3_GAS', 'NO_Aircraft', 'NO_Lightning', 'QNO', 'SAD_ICE', 'SAD_LNAT',
'SAD_SULFC', 'T', 'TREFHT', 'TTGW', 'U', 'UTGWORO', 'UTGWSPEC', 'V', 'VTGWORO', 'VTGWSPEC', 'Z3', 'TOTH',
'UIONTEND', 'VIONTEND', 'DTCORE', 'T_24_COS', 'T_24_SIN', 'T_12_COS', 'T_12_SIN', 'OMEGA_24_COS',
'OMEGA_24_SIN', 'OMEGA_12_COS', 'OMEGA_12_SIN', 'U_24_COS', 'U_24_SIN', 'U_12_COS', 'U_12_SIN',
'V_24_COS', 'V_24_SIN', 'V_12_COS', 'V_12_SIN', 'PS_24_COS', 'PS_24_SIN', 'PS_12_COS', 'PS_12_SIN',
'CLDLIQ', 'CLDICE', 'CONCLD', 'FRONTGF:I', 'BUTGWSPEC', 'BTAUE', 'BTAUW', 'BTAUN', 'BTAUS', 'TAUE', 'TAUW',
'TAUN', 'TAUS', 'TAUGWX', 'TAUGWY', 'TAUX', 'TAUY', 'SNOWHLND', 'SNOWHICE', 'ICEFRAC', 'FSDSC', 'WFRC_O',
'WFRC_O2', 'WFRC_O3', 'WFRC_NO', 'WFRC_H', 'WFRC_CO2', 'WFRC_QRS_TOT'
fincl2 = 'PS', 'Z3', 'T', 'U', 'V', 'FLNT', 'PSL', 'OMEGA', 'FSDS', 'FSDSC', 'CLOUD', 'CONCLD', 'SNOWHLND', 'SNOWHICE',
'CFC11', 'CFC12', 'CH4', 'N2O', 'CLDLIQ', 'CLDICE', 'ASDIR'
fincl3 = 'PS:B', 'T:B', 'Z3:B', 'U:B', 'V:B', 'QRL_TOT:B', 'QRS_TOT:B', 'DTCORE:B', 'DTV:B', 'TTGW:B', 'OMEGA:B'
fincl4 = 'PS', 'PSL', 'U', 'V', 'T', 'Z3', 'PHIS','FRONTGF:I', 'OMEGA'
fincl5 = ' '
 
Top