Changes between Version 85 and Version 86 of Doc/FAQ


Ignore:
Timestamp:
03/03/23 14:42:21 (16 months ago)
Author:
snguyen
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Doc/FAQ

    v85 v86  
    337337}}} 
    338338 
    339 * create retart files and limit.nc for forcing the atmosphere. 
    340    
     339* create restart files and limit.nc for forcing the atmosphere with `create_etat0_limit.nc`. 
     340You will need to edit `COMP/lmdz.card`: 
     341{{{ 
     342[BoundaryFiles] 
     343List= () 
     344 
     345ListNonDel= (${R_IN}/ATM/Albedo.nc, .), \ 
     346    (${R_IN}/ATM/ECDYN.nc.20020101, ECDYN.nc), \ 
     347    (${R_IN}/ATM/ECDYN.nc.20020101, ECPHY.nc), \ 
     348    (${R_IN}/ATM/INPUT_CE0L/Relief_orig.nc, Relief.nc), \ 
     349    (${R_IN}/ATM/Rugos.nc, .), \ 
     350    (${R_IN}/ATM/INPUT_CE0L/landiceref_orig.nc, landiceref.nc), \ 
     351    (${R_IN}/ATM/Ozone/HYBRIDE/v2.clim/tro3_1995.new.nc, climoz.nc), \ 
     352    (/ccc/store/cont003/gen2212/nguyens/IGCM_OUT/IPSLCM5A2/PROD/piControl/CM5A2WPIREF/ATM/Output/MO/CM5A2WPIREF_20490101_20491231_1M_tsol_oce_pourc_sic.nc, histmth_sst.nc), \ 
     353    (/ccc/store/cont003/gen2212/nguyens/IGCM_OUT/IPSLCM5A2/PROD/piControl/CM5A2WPIREF/ATM/Output/MO/CM5A2WPIREF_20490101_20491231_1M_tsol_oce_pourc_sic.nc, histmth_sic.nc), \ 
     354    (/ccc/work/cont003/gen2212/nguyens/MOSAIXLGM/MOSAIXPI/LMD9695_grid_maskFrom_ORCA2.3_MX_v2.nc, o2a.nc) 
     355}}} 
     356 
     357In particular, the last three lines point to the surface forcings coming from a `histmth.nc` file and the `o2a.nc` file generated by MOSAIX.  
     358 
     359The names `histmth_sst.nc` and `histmth_sic.nc` are imposed by the type of file given to LMDZ, i.e. an `histmth.nc` file. 
     360''For using PCMDI amip files you would use LMDZ would expect a différent file name containing different variable names.'' 
     361 
     362`o2a.nc` is the expected name for the MOSAIX  file. 
     363 
     364'''Now you can run create_etat0_limit.e''' 
     365 
     366* run LMDZOR to prepare an atmosphere at equilibrium with the boundary conditions 
     367For this prepare a `LMDZOR/clim_pdControl` with external forcings adjusted to your desired period (pi, pd, paleo, annual...). 
     368Modify `COMP/lmdz.card` to impose these conditions and use the restart and limit files: 
     369{{{ 
     370[UserChoices] 
     371 
     372... 
     373 
     374LMDZ_Physics=AP       # for IPSLCM5A2 physics parameterizations 
     375 
     376# Set the variable CREATE needed further below to find the initial and boundary condition files. 
     377CREATE=YOUR_CREATE_ETAT0_SIMULATION 
     378 
     379# Set ConfType to choose parameters for aerosols, solar and green house gazes. 
     380# The parameter file PARAM/config.def_$ConfType will be used. 
     381# ConfType=preind/actuel/annuel                                                  
     382ConfType=preind 
     383 
     384... 
     385 
     386[InitialStateFiles] 
     387List=   (${ARCHIVE}/IGCM_OUT/LMDZ/${CREATE}/ATM/Output/Restart/${CREATE}_clim_start.nc,    start.nc),\    # should point towards your create_etat0_limit.e experiment 
     388        (${ARCHIVE}/IGCM_OUT/LMDZ/${CREATE}/ATM/Output/Restart/${CREATE}_clim_startphy.nc, startphy.nc)  
     389 
     390[BoundaryFiles] 
     391List=() 
     392ListNonDel= (${ARCHIVE}/IGCM_OUT/LMDZ/${CREATE}/ATM/Output/Boundary/${CREATE}_clim_limit.nc, limit.nc),\  # should point towards your create_etat0_limit.e experiment 
     393            (${R_IN}/ATM/${RESOL_ATM}/AR5/HISTORIQUE/aerosols_11YearsClim_1855_v5.nc, aerosols.nat.nc), \ # the following lines reflect your forcings 
     394            (${R_IN}/ATM/${RESOL_ATM}/AR5/HISTORIQUE/aerosols_11YearsClim_1855_v5.nc, aerosols1980.nc), \ 
     395            (${R_IN}/ATM/${RESOL_ATM}/AR5/HISTORIQUE/climoz_LMDZ_1855_v2.nc, climoz_LMDZ.nc) 
     396 
     397}}} 
     398 
     399Edit `OMP/orchidee.card` to use the appropriate initial files: 
     400{{{ 
     401[InitialStateFiles] 
     402List=   (${R_IN}/SRF/soils_param.nc,        . ), \ 
     403    (${R_IN}/SRF/routing.nc,            . ), \ 
     404    (${R_IN}/SRF/PFTmap_1850to2005_AR5_LUHa.rc2/PFTmap_IPCC_1860.nc, PFTmap.nc), \ 
     405        (${R_IN}/SRF/cartepente2d_15min.nc, .) 
     406}}} 
     407 
     408'''Now you can run 2 to 10 years of LMDZOR''' 
     409 
     410*  
     411 
    341412# FAQ :  Special configurations # 
    342413