Changes between Version 15 and Version 16 of Doc


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

--

Legend:

Unmodified
Added
Removed
Modified
  • Doc

    v15 v16  
    22["Doc/Chap1"] 
    33 
    4 == Chap. 1 : General introduction == 
    5  
    6 post_it has been developped in IDL by Eric Guilyardi. It uses SAXO routines which has been developped by Sébastien Masson.  post_it may help visualise and analyse netcdf data outputs from models automaticly without knowing properly the SAXO routines. However I recommend the user to have some notions of IDL to use this software. A good way to do this is also to read the SAXO documentation on http://forge.ipsl.jussieu.fr/saxo/ 
    7  
    8 === Directories and files === 
    9  
    10 You should create two directories in your home directory : 
    11  
    12  * 'POST_IT' (where to download the sources through svn) 
    13  * 'SAXO' (which can be a link to Sébastien Masson's directory '/usr/home/smasson/SAXO_DIR/SRC/' if you have an account in LOCEAN or once again dowload the sources through svn). 
    14  
    15 post_it has a new structure since it has been managed by a svn server. The 'POST_IT' directory contains 7 main directories : 
    16 {{{ 
    17 chromios.locean-ipsl.upmc.fr:/.autofs/home/mklod/POST_IT> ls 
    18 config  doc  grids  out  procs  tools  usr 
    19 chromios.locean-ipsl.upmc.fr:/.autofs/home/mklod/POST_IT> 
    20 }}} 
    21  
    22 The main files which the user will have to change are : 
    23 {{{ 
    24 hromios.locean-ipsl.upmc.fr:/.autofs/home/mklod/POST_IT/usr> ls -l 
    25 -rw-r--r--        1 mklod lodyc  2956 Jul 12 17:52 init.pro 
    26 lrwxrwxrwx   1 mklod lodyc        8 Jul 11 18:23 i.pro -> init.pro 
    27 lrwxrwxrwx   1 mklod lodyc        5 Jul 11 18:26 p -> p.pro 
    28 -rw-r--r--         1 mklod lodyc   8198 Jul 17 17:59 plt_def.pro 
    29 -rw-r--r--         1 mklod lodyc 63820 Jul 17 19:10 post_it.pro 
    30 -rw-r--r--         1 mklod lodyc       45 Jul 11 18:25 p.pro 
    31 lrwxrwxrwx   1 mklod lodyc        18 Jul 11 18:23 r.pro -> ../procs/reset.pro 
    32 chromios.locean-ipsl.upmc.fr:/.autofs/home/mklod/POST_IT/usr> 
    33 }}} 
    34  
    35 === Launch IDL and POST_IT === 
    36  
    37  * Parametrize the init.pro file (the path variable where to find the POST_IT and SAXO directories -> mandatory ; other directories such as homedir -> you can leave the default values). 
    38  * Launch idl in the 'usr' directory. 
    39  
    40 {{{ 
    41 chromios.locean-ipsl.upmc.fr:/.autofs/home/mklod/POST_IT/usr> idl 
    42 IDL Version 6.2 (linux x86 m32). (c) 2005, Research Systems, Inc. 
    43 Installation number: 500138. 
    44 Licensed for use by: CNRS/ IPSL 
    45 IDL> 
    46 }}} 
    47  * Execute the 'init.pro' file in the IDL window (@init or @i if you made a link : ln -s init.pro i) 
    48 {{{ 
    49 IDL> @i 
    50 % Compiled module: KEEP_COMPATIBILITY. 
    51 % Compiled module: FIND. 
    52 % Compiled module: PATH_SEP. 
    53 ...................... 
    54 }}} 
    55  
    56  * Execute the 'post_it.pro' in the IDL window  (@p or p if you made a link : ln -s p.pro p) 
    57 {{{ 
    58 IDL> p 
    59 % Compiled module: P. 
    60 % Compiled module: POST_IT. 
    61 % Compiled module: DEF_WORK. 
    62 % Compiled module: PLT_DEF. 
    63 % Compiled module: DECODE_CMD. 
    64 ........................ 
    65 }}} 
     4["Doc/Chap2"] 
    665 
    676== Chap.2 : File post_it.pro ==