Changes between Version 21 and Version 22 of Doc/Models/LMDZ


Ignore:
Timestamp:
07/18/16 14:10:46 (8 years ago)
Author:
acosce
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Doc/Models/LMDZ

    v21 v22  
    4646    creates interannual AMIP boundary conditions 
    4747 
    48 [[NoteBox(warn, You must properly define the same calendar ''leap/noleap/360d'' in config.card of the job that creates initial states and in config.card of the job that starts your experiment.,600px)]] 
     48[[NoteBox(warn, You must properly define the same calendar ''leap/noleap/360d'' in config.card (don't forget to adapt the parameter !DateEnd of your simulation to this calendar) of the job that creates initial states and in config.card of the job that starts your experiment.,600px)]] 
    4949 
    5050 
     
    5959 
    6060'''Step 1''' [[BR]] 
    61 Identify the time series for the simulation you want to use. Use the tsol_oce variables for the surface temperature (SST) and pourc_sic for the sea ice concentration (SIC). The variables must be monthly outputs of LMDZ. Divide the time series into annual files. For example, the files for the IPSLCM5A rcp4.5 simulation are located at CCRT : 
     61Identify the time series for the simulation you want to use. Use the tsol_oce variables for the surface temperature (SST) and pourc_sic for the sea ice concentration (SIC). The variables must be monthly outputs of LMDZ. 
     62For example, the files for the IPSLCM5A rcp4.5 simulation are located at CCRT : 
    6263{{{ 
    6364/dmnfs/cont003/p86denv/IGCM_OUT/IPSLCM5A/PROD/rcp45/v3.rcp45.1/ATM/Analyse/TS_MO/v3.rcp45.1_20060101_21251231_1M_tsol_oce.nc 
    6465/dmnfs/cont003/p86denv/IGCM_OUT/IPSLCM5A/PROD/rcp45/v3.rcp45.1/ATM/Analyse/TS_MO/v3.rcp45.1_20060101_21251231_1M_pourc_sic.nc 
    6566}}} 
    66  
    67 Use cdo to divide them into annual files with 12 timesteps in each file: 
     67 You can choose to work with annual variability or with a climatology.  
     68 
     69 * Annual variability (for this case you will use the experiment CREATE_amip)  
     70Divide the time series into annual files. Use cdo to divide them into annual files with 12 timesteps in each file: 
    6871{{{ 
    6972cdo splityear all_path_to_file_TS_MO_tsol_oce.nc  $WORKDIR/my_new_dir/v3.rcp45.1_tsol_oce_ 
     
    7174}}} 
    7275 
     76 * Climatology (for this case you will use the experiment CREATE_clim)  
     77You can make an average for each month over the years.  
     78{{ 
     79cdo ymonmean all_path_to_file_TS_MO_tsol_oce.nc  $WORKDIR/my_new_dir/v3.rcp45.1_tsol_oce.nc 
     80cdo ymonmean all_path_to_file_TS_MO_pourc_sic.nc $WORKDIR/my_new_dir/v3.rcp45.1_pourc_sic.nc 
     81}} 
     82 
     83 
    7384'''Step 2'''[[BR]] 
    7485The annual files can now be used directly with the ce0l program (revision 1508 or later) LMDZ5/trunk. The files must be renamed histmth_sst.nc and histmth_sic.nc in the execution directory. The AMIP files must not be in the execution directory because they will be used first.  
    7586 
    76 Use EXPERIMENT/LMDZ/CREATE_amip. Change it to use those new files instead of the AMIP files:  
     87Use EXPERIMENT/LMDZ/CREATE_amip (or CREATE_clim, following the case you choose before). Change it to use those new files instead of the AMIP files:  
    7788{{{ 
    7889cd modipsl/config/XXXX     # XXXX can be all v5 or v6 configurations containing LMDZ