SCAM output variables from scmforecast.F90

Hi all,

I've been using SCAM based on CESM 2.1.3, and I found that some variables (e.g., TRELAX, QRELAX, and TAURELAX) from scmforecast.F90 code are not outputted correctly.

I've changed lines 540-542:
call outfld( 'TRELAX' , relax_T , plon, dummy )
call outfld( 'QRELAX' , relax_q(1:plev,1) , plon, dummy )
call outfld( 'TAURELAX' , rtau , plon, dummy )

to
call outfld( 'TRELAX' , relax_T , plon, dummy_dyndecomp )
call outfld( 'QRELAX' , relax_q(1:plev,1) , plon, dummy_dyndecomp )
call outfld( 'TAURELAX' , rtau , plon, dummy_dyndecomp )

And then it worked fine...
I'm not sure whether it is cesm2.1.3 specific issue or not but I thought it would be good to share here.

-Shim
 
Back
Top