sans said:
Dear CAM 3.0 users,
Could any of you tell me what is the default timestep (DTIME) for sld dynamics for different resolutions.
Thanks and Regards,
sans
The nominal time step for the SLD core is 3600 seconds.
The method for determining this should be more transparent, but here
is how things work (at least the last time I looked).
First the time step is set to a default value within the model.
Then the time can be over-ridden at run time by a value contained in the namelist file.
Whether or not the namelist file contains an over-ride value depends upon two things.
1) the user might have prescribed a value from the time step during the
build-namelist step of the build procedure
2) the build-namelist step might have inserted a value in namelist by itself if you selected some special options during the configuration and build procedure. The special situations are spelled out in the .xml files contained in the bld directory of the source tree.
I am assuming that no special configuration options were chosen, which means the timestep is set at compile time. In that case namelist variables are assigned nominal values in subroutines found in runtime_opts.F90.
The relevant calls are to a routine called time_manager_preset (which sets the default value). That value might then be over-ridden when the namelist is read in. If you look at time_manager_preset you will see
dtime = 3600 somewhere in there.
Phil