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

daily history

XavierC

Xavier
New Member
Hi all,
i just went through the gx3 exemple and i ma facing an issue with the history frequency.

i used the default :
histfreq = 'm','x','x','x','x'
histfreq_n = 1 , 1 , 1 , 1 , 1
histfreq_base = 'zero','zero','zero','zero','zero'
hist_avg = .true.,.true.,.true.,.true.,.true.
hist_suffix = 'x','x','x','x','x'
history_dir = './history/'
history_file = 'iceh'
history_precision = 4
history_format = 'default'

i got monthly outputs

but if i asked for daily :
histfreq = 'd','x','x','x','x'

i got nothing !

if i do the same with restart files
dumpfreq = 'm','x','x','x','x' or dumpfreq = 'd','x','x','x','x'

i get either monthly or daily files ....

Any one could point out what i am doing wrong with histfile ?

Thnaks
Xavier
 

Philippe Blain

New Member
I Xavier, you also have to change the individual output variable for each field you want in your outputs, in the icefields_nml section of the namelst (and the icefields_*_nml sections for some specific outputs) i.e.

Code:
&icefields_nml
f_aice = 'd'
 

dbailey

CSEG and Liaisons
Staff member
If you want both monthly and daily you should do:

histfreq = 'm','d','x','x','x'

f_aice = 'mdxxx'
f_hi = 'mdxxx'

etc.
 
Top