Changes between Version 35 and Version 36 of Doc/Models/LMDZ


Ignore:
Timestamp:
07/21/16 11:12:59 (8 years ago)
Author:
acosce
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Doc/Models/LMDZ

    v35 v36  
    6565You can choose to work with annually-varying outputs or with a climatology.  
    6666 
    67  * Annually-varying files (for this case you will use the experiment CREATE_amip)  
     67##### Annually-varying files (for this case you will use the experiment CREATE_amip)  ##### 
    6868Divide the mensual time series into annual files. Use cdo to divide them into annual files with 12 timesteps in each file: 
    6969 
     
    7373}}} 
    7474 
    75  * Climatological files (for this case you will use the experiment CREATE_clim)  
    76 You can use cdo to make an average for each month over the years (with mensual time series). For example:  
     75##### Climatological files (for this case you will use the experiment CREATE_clim) ##### 
     76You can use cdo to make an average for each month over the years (with mensual time series).  
     77   * Extract the period you want from the timeseries : 
     78{{{ 
     79cdo seltimestep,my_first_timestep/my_last_timestep my_directory/ATM/Analyse/TS_MO/myfile_1M_tsol_oce.nc extracted_tsol.nc 
     80}}} 
     81   * Create the corresponding climatology 
     82{{{ 
     83do ymonmean extracted_tsol.nc tsol_clim.nc 
     84}}} 
     85   * Rename variables and dimensions 
     86{{{ 
     87ncrename -v lon,longitude -d lon,longitude -v lat,latitude -d lat,latitude -v time_counter,time -d time_counter,time, -v tsol_oce,tosbcs tsol_clim.nc 
     88 
     89Same for sea-ice, with pourc_sic being renamed as sicbcs 
     90 
     91}}} 
     92 
     93Or if you want to use all the TS period :   
    7794{{{ 
    7895cdo ymonmean all_path_to_file_TS_MO_tsol_oce.nc  $WORKDIR/my_new_dir/v3.rcp45.1_tsol_oce.nc