Changes between Version 2 and Version 3 of Doc/Chap2


Ignore:
Timestamp:
01/22/08 12:45:00 (16 years ago)
Author:
kolasinski
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Doc/Chap2

    v2 v3  
    6464}}} 
    6565 
     66 * Variable 'other_file' : Instead of using the file 'post_it.pro' to read the in line commands, you would like to use another file ('post_it.pro' might be too big).  
     67For this purpose, set the variable 'other_file' to the name of the other file. By default, it is set to '-', which means 'post_it.pro' has to be read. Pay attention to the fact that the structure of the other file is bit different from 'post_it.pro' since you should only find the 'cmdline2' variable (similar to 'cmdline' from 'post_it.pro') in it. 
     68{{{ 
     69other_file = 'post_it2' 
     70other_file = '-' 
     71}}} 
     72 
     73* Variable 'cmdline' : In this very long variable, you set the plot you want to see or print. Please check the other example below : 
     74{{{ 
     75cmdline = [ $ 
     76; var        on   exp     grid  plt               timave   date1                spec                    disp   proj   out 
     77  'precip   1   2L24  lmdzl  xt_pac_eq  1mm     01_1860-1959  12_1860-1959     2P     1        v', $ 
     78  'topl       0   2L24  lmdzl  xt_pac_eq  1mm     01_1860-1959  12_1860-1959     1       1        v', $ 
     79 
     80'lastline 0' ] 
     81}}} 
     82 
     83This in line command allows to see 2 plots on the same window ('Paysage' format). These are the seasonnal cycle of precipitation (called precip) and OLR (called topl) for the '2L24' experiment along the equator ('x' -> longitude, 't' -> time). The variable is averaged zonally on the box 'pac_eq' which is defined in 'domain_boxes.def' file. The grid type is 'lmdzl'. The file should contains 12 mean months from January to December and those mean months are carried out on 100 years from 1860 to 1959. The result is the following picture.[[BR]] 
    6684 
    6785 
     
    7391 
    7492 
     93