-
I'm attempting to set up a bare-bones development environment, specifically one that can run on <= 8 processors and output every timestep on the native model grid using the global model. I guess my first question should be: is this even possible? My assumption is the answer is no if I start with effectively the control_p8 regression test setup (
which in my understanding of the FMS documentation (http://noaa-gfdl.github.io/FMS/group__diag__manager.html) should include one day of output into a file. Since my simulation length is one hour and time step is 12 minutes, I expect 5 times in the output file. I end up with the following, which is the correctly named file, but it only has the first time in the file.
I assume I'm missing a setting somewhere in
Appreciate any feedback on if what I'm trying to do is even possible. Also wondering if there is an exhaustive list of settings with documentation for both |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 6 replies
-
@barlage I think the way you specified the field will give you only one time step. Can you try: "fv3_history", 12, "minutes", 1, "minutes", "time" "gfs_dyn", "ucomp", "ugrd", "fv3_history", "all", .false., "none", 2 |
Beta Was this translation helpful? Give feedback.
-
Yes, since the file name has minutes in it, I am not sure if the file can include the time other than the specified time in the name. Maybe you can try remove the minutes in the name? |
Beta Was this translation helpful? Give feedback.
-
There might be some other settings. Can you take a look at: /scratch1/NCEPDEV/stmp2/Jun.Wang/FV3_RT/rt_227608/control_p8_lndp_intel? I have: netcdf fv3_history2d.tile1 { time = 12, 24, 36, 48, 60, 72, 84, 96, 108, 120, 132, 144, 156, 168, 180, |
Beta Was this translation helpful? Give feedback.
-
I got multi-time to work with setting in model_configure: Without any real proof, I speculate that
with the nsout line above, it looks like this (note the
Is |
Beta Was this translation helpful? Give feedback.
I got multi-time to work with setting in model_configure:
output_fh: 0.2 -1
and removing
nsout: 1
Without any real proof, I speculate that
nsout
might be getting reset after the first time step. This line inatmos_model.F90
seems to indicate that writing should happen fornsout>0
. With the output_fh line above, the execution log looks like this(note the---isec,seconds
print):