Comparaison des versions

Légende

  • Ces lignes ont été ajoutées. Ce mot a été ajouté.
  • Ces lignes ont été supprimées. Ce mot a été supprimé.
  • La mise en forme a été modifiée.

...

These are the needed config files:toc

Volet
configexp.cfg
gem_settings.nml
outcfg.out
physics_input_table 
CLASS_input_table (only for GEM5 and up when running CLASS)


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 .

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 official 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

When running the UQAM version of GEM for output intervals ('steps=#,hour,<start,end,inc>';) the start and end hour (or step) will get updated automatically! Only for the first job in a run the start hour (or step) has to be set by the user!

You can find an example file further down on this page under: outcfg.out example

If you set one of the following 3 parameters in your configexp.dot file:

    CLIMAT_out_anal
    CLIMAT_out_pilot
    CLIMAT_out_offline

additional lines will automatically get added to your outcfg.out file to output initial condition files (prefix=an), pilot files (prefix=nm) or fields to drive an offline model like SPS (prefix=ol).

outcfg.out example:

...

physics_input_table

The ‘physics_input_table’ contains a list of all your physics input fields. This includes all the geophysical fields (GEOP), fields to be read from the initial condition file (ANAL), fields read from the climatological file specified in ‘GEM_climato‘ (CLIM) as well as fields from the analyzed climatological file, ‘GEM_anclima’, like for ‘TM’ and ‘LG’ (INREP).

There is one row per field to be read with the following parameters:

    in : name of field to be read
    freq : frequency at which field will be read. 0: initial time step; 1: whenever it is found; 2: ???
    search : shortcut of file to look for field. A list of files can be given.
    Interp : horizontal interpolation type. Options: linear, near, cubic
    timeint: linear, step, any, near

Examples:

    in=VF;   freq=0;   search=GEOP;       interp=near;   levels= 1,26;
    in=SD;   freq=0;   search=ANAL;       interp=near;   levels= 1,7;
    in=TM;   freq=0,1; search=ANAL,INREP; interp=linear; timeint=near
    in=LG;   freq=0,1; search=ANAL,INREP; interp=near;   timeint=near

CLASS_input_table  (only needed in GEM 5 when running CLASS or CLASSIC)

This file is only needed when running GEM5 and up with CLASS. It  contains almost all the parameter settings for CLASS or CLASSIC. Usually this file does not need to get edited. You can just copy one from another GEM5 CLASS simulationand then modify them.