Changes between Version 1 and Version 2 of Documentation/UserGuide/SetDiffLevel


Ignore:
Timestamp:
2014-11-06T16:32:59+01:00 (9 years ago)
Author:
ychen
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Documentation/UserGuide/SetDiffLevel

    v1 v2  
    1 I try to find out some clues for setting the output variables from LMDZ. 
     1I try to find out some clues for setting the output variables in the LMDZ configuration. 
    22 
    3 First, there are two files, one  is in the COMP/lmdz.card and another is in the PARAM/output.def_low/medium/height, which are associated the setting of LMDZ output files. 
    4  
     3First, there are two files, one  is in the COMP/lmdz.card and another is in the PARAM/output.def_low/medium/height, which are associated with the setting of LMDZ output files in your submission directory. 
     4=== COMP/lmdz.card === 
    55In the  COMP/lmdz.card, there is an option: "OutLevel" 
     6{{{ 
    67# Set OutLevel to choose the level of output files from LMDZ. The file PARAM/output.def_$OutLevel will be used. 
    78# OutLevel=low/medium/high 
    89OutLevel=low 
    9  
     10}}} 
     11=== PARAM/output.def_low === 
    1012In the PARAM/output.def_low, there are a lot of setting to adjust the detail of the output files. 
    1113However, we are interested in specific variable for the output but here is lacking of information. 
    1214Within this file there is only an option called "phys_out_filelevel" which could be assigned for different level in different output intervals. 
    1315as bellow: 
     16{{{ 
    1417phys_out_filenames=      histmth histday histhf   histhf3h  histhf3hm histstn 
    15 phys_out_filelevels=        5            5           2          5            5                5 
     18phys_out_filelevels=     5       5       2        5         5         5 
     19}}} 
    1620 
    1721 
     22=== output.def === 
    1823So, I looked into the LMDZ source files for more detail. 
    1924There is another file called "ouput.def" in the 
     
    2126 
    2227In this file there are a lot of variables in the list and with different output levels. 
    23 ex: 
     28{{{ 
    2429######## Abderrahmane le 20 11 08 ######################## 
    2530# Niveaux de sorties et nom pour chaque variable dans les# 
     
    5055flag_tsol         =  1, 1, 1, 1, 1 
    5156..... 
     57}}} 
    5258 
    53 So, you can select the variables what you want to include for the certain level. Maybe you need to recompile the source files for that default setting or just simply change the output levels in the output.def_low with "phys_out_filelevels= 10 10 10 10 10 " for getting all the variables. 
     59You can select the variables what you want to include in certain output level.  
     60Maybe you need to recompile the source files for that default setting again or just simply change the output levels in the output.def_low with "phys_out_filelevels= 10 10 10 10 10 " for getting all the variables. 
    5461 
    55 Maybe you can add some information about this on the wiki for the people who are interested in LMDZ output variables. 
     62Hope this information could be help the people who are interested in look for certain LMDZ output variables.