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

What is the meaning of instant / average type output

Dear model experts,I want to get daily output for the U,V,T at the given instant only without taking average over the day. Will the "U:I" command in usr_nl_cam help me out?I searched the model source code, and didn't find an output of U,V,T in "I" type. If I added a addfld function for instant U,V and T, can I get proper output?Many thanks!!Wanying
 

hannay

Cecile Hannay
AMWG Liaison
Staff member
If you use the syntax:FINCL1 = 'U:I'in user_nl_camyou will get instantaenous output at the end of your outputting interval. For instance, say that you are outputting data daily for the h0 file. (This is set by nthfrq = -24)If you use FINCL1 = 'U:I', the model will output the instantaneous value of U field at the end of the day. The default value is averaging for most of the variables. In the code this is set by the subroutine "addfld"  subroutine addfld (fname, units, numlev, avgflag,  long_name, decomp_type, [Optional arguments]) 
 
Top