...
If you want to start a new simulation I suggest you copy a set of config files from another simulation, which is as close as possible to the one you want to run.
configexp.cfg
This file is a shell parameter file which gets sourced by the scripts. You can put comments in it like in any other shell script and there must never be a space before or after the '=' sign. The parameters set here determine:
- name of experiment (always keep *_YYYYMM and the end of the name)
- start and end date
- model time step
- model levels
- number of cores to run on
- where to find the input files
- where to archive the output
- control output of pilot files
- ...
When running UQAM style there are several more parameters to be set than in ECCC's forecast mode. These extra parameters all start with 'CLIMAT_...'.
General GEM parameters:
...
Keep in mind that the minimum number of grid points for a GEM tile is ~25:
pilot region (Grd_maxcfl+7) + blending (Lam_blend_H (default 10)) + 5 points
If you change the tiling and your simulation suddenly crashes right at the beginning of the model executable it might be that the tiling you chose does not work for this grid. Choose another tiling and try again.
In general you want to keep your tiles as square as possible to keep the amount of data exchange between tiles to a minimum.
...
Extra parameters when running "UQAM style":
...
...
gem_settings.nml
This file contains Fortran namelists which will be read by the model. This means you cannot put any comments inside the namelists, but only in between them!
This file is very sensitive to errors. Even a missing '.' can make the model crash and all you will get is a message saying that there is an error in a specific namelist and it is up to you to find this error.
The parameters set here determine:
- model grid
- model (and driving data) time step
- output file formats (monthly/daily/..., etiket)
- advection & diffusion
- spectral nudging
- physics (radiation/convection/surface/...) schemes
- ...
For more information have a look at an extract of RPN's wiki pages:
GEM_4.8.lts12 namelists
GEM_5.0.0 namelists
In climate mode the following parameters will be set automatically, according to certain parameters in your 'configexp.cfg':
- 'Step_runstrt_S' and 'Fcst_end_S' (according to start date and current month)
- 'hyb' and 'Grd_rcoef' (according to 'CLIMAT_etaname')
- Greenhouse gas concentrations: qcfc12, qcfc11, qch4, qn2o, qco2 (according to ${CLIMAT_ghg_list})
outcfg.out
This file gets evaluated by the model. This file does not tolerate any comments. As soon as the model finds only one character out of place it will ignore the rest of the file! It controls the RPN standard file output such:
- output grid (model/core/free)
- output frequency (in steps or hours)
- output levels (model/pressure)
- and which fields will be written
Have a look at the general description on our wikiofficial description from RPN: outcfg.out
A list of all model variables available for output can be found at the beginning of each model listing.
Note that this list varies depending on the schemes used!
A list of the most common fields can also be found under: RPN variable names
...