Ignore:
Timestamp:
07/12/12 15:33:29 (12 years ago)
Author:
jgipsl
Message:

Small modifications for CREATE_clim and CREATE_amip experiences :

  • Adde all parameter files : not necessary but esaier to compare
  • Changed to no leap calendar in CREATE_amip to have the same as in LMDZOR_v4 configuration.
  • Desactivate creatation of grid file (grilles_gcm.nc) for cumul period > 1.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • CONFIG/UNIFORM/v5/LMDZREPR_v5/GENERAL/DRIVER/lmdz.driver

    r1802 r1804  
    320320    ## run.def parameters 
    321321    LMDZ_sed run.def dayref   ${InitDay} 
    322     LMDZ_sed run.def anneeref ${InitYear} 
    323322    LMDZ_sed run.def calend   ${CalendarTypeForLmdz} 
    324323    LMDZ_sed run.def nday     ${PeriodLengthInDays} 
     
    327326    LMDZ_sed run.def adjust   ${LMDZ_adjust} 
    328327 
     328    # Set anneeref different for gcm and ce0l 
     329    # Test if executable create_etat0_limit is present and lmdz.x is not present 
     330    if [ -f create_etat0_limit* ] || [ -f ce0l* ] && [ ! -f lmdz.x ] ; then 
     331        # for case ce0l : always take current year 
     332        LMDZ_sed run.def anneeref ${year} 
     333    else 
     334        # for case gcm : take first year of simulation 
     335        LMDZ_sed run.def anneeref ${InitYear} 
     336    fi 
     337 
     338    # Activate creation of file grilles_gcm.nc only at first period 
     339    if [ ${CumulPeriod} -eq 1 ] ; then 
     340        LMDZ_sed run.def grilles_gcm_netcdf y 
     341    else 
     342        LMDZ_sed run.def grilles_gcm_netcdf n 
     343    fi 
    329344 
    330345    ## Determine from the variable ListOfComponents in config.card coupling to external models  
Note: See TracChangeset for help on using the changeset viewer.