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

default timestep for sld dynamics

pjr

Member
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
 
Top