Changeset 1804


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.
Location:
CONFIG/UNIFORM/v5
Files:
25 edited

Legend:

Unmodified
Added
Removed
  • CONFIG/UNIFORM/v5/IPSLCM5CHS_v5/EXPERIMENTS/LMDZ/CREATE_amip/COMP/lmdz.card

    r1645 r1804  
    2424 
    2525[ParametersFiles] 
    26 List=   (${SUBMIT_DIR}/PARAM/gcm.def_${RESOL_ATM_3D}, gcm.def), \ 
    27         (${SUBMIT_DIR}/PARAM/run.def,                 run.def), \ 
    28         (${SUBMIT_DIR}/PARAM/config.def_actuel,       config.def) 
     26List=   (${SUBMIT_DIR}/PARAM/physiq.def_L${RESOL_ATM_Z}_${LMDZ_Physics}, physiq.def), \ 
     27        (${SUBMIT_DIR}/PARAM/gcm.def_${RESOL_ATM_3D},    gcm.def),    \ 
     28        (${SUBMIT_DIR}/PARAM/output.def_low        ,  output.def),    \ 
     29        (${SUBMIT_DIR}/PARAM/config.def_actuel     ,  config.def),    \ 
     30        (${SUBMIT_DIR}/PARAM/run.def, .), \ 
     31        (${SUBMIT_DIR}/PARAM/traceur.def, .) 
     32 
    2933 
    3034[RestartFiles] 
     
    3236 
    3337[OutputText] 
    34 List=   (gcm.def, run.def, config.def) 
     38List=   (physiq.def, gcm.def, run.def, config.def, traceur.def, output.def) 
    3539 
    3640[OutputFiles] 
  • CONFIG/UNIFORM/v5/IPSLCM5CHS_v5/EXPERIMENTS/LMDZ/CREATE_amip/config.card

    r1772 r1804  
    1717#============================ 
    1818#D-- leap, noleap, 360d 
    19 CalendarType=leap 
     19CalendarType=noleap 
    2020#D-- Begin and end of job  
    2121#D-- "YYYY-MM-DD" 
  • CONFIG/UNIFORM/v5/IPSLCM5CHS_v5/EXPERIMENTS/LMDZ/CREATE_clim/COMP/lmdz.card

    r1645 r1804  
    2525 
    2626[ParametersFiles] 
    27 List=   (${SUBMIT_DIR}/PARAM/gcm.def_${RESOL_ATM_3D}, gcm.def), \ 
    28         (${SUBMIT_DIR}/PARAM/run.def,                 run.def), \ 
    29         (${SUBMIT_DIR}/PARAM/config.def_actuel,       config.def) 
     27List=   (${SUBMIT_DIR}/PARAM/physiq.def_L${RESOL_ATM_Z}_${LMDZ_Physics}, physiq.def), \ 
     28        (${SUBMIT_DIR}/PARAM/gcm.def_${RESOL_ATM_3D},    gcm.def),    \ 
     29        (${SUBMIT_DIR}/PARAM/output.def_low        ,  output.def),    \ 
     30        (${SUBMIT_DIR}/PARAM/config.def_actuel     ,  config.def),    \ 
     31        (${SUBMIT_DIR}/PARAM/run.def, .), \ 
     32        (${SUBMIT_DIR}/PARAM/traceur.def, .) 
     33 
    3034 
    3135[RestartFiles] 
     
    3337 
    3438[OutputText] 
    35 List=   (gcm.def, run.def, config.def) 
     39List=   (physiq.def, gcm.def, run.def, config.def, traceur.def, output.def) 
    3640 
    3741[OutputFiles] 
    3842List=   ( limit.nc,       ${R_OUT_ATM_O}/Boundary/${config_UserChoices_JobName}_clim_limit.nc,   NONE), \ 
    39         ( climoz_LMDZ.nc, ${R_OUT_ATM_O}/Boundary/${config_UserChoices_JobName}_climoz_LMDZ.nc,  NONE), \ 
     43        ( climoz_LMDZ.nc, ${R_OUT_ATM_O}/Boundary/${config_UserChoices_JobName}_clim_climoz_LMDZ.nc,  NONE), \ 
    4044        ( start.nc,       ${R_OUT_ATM_O}/Restart/${config_UserChoices_JobName}_clim_start.nc,    NONE), \ 
    4145        ( startphy.nc,    ${R_OUT_ATM_O}/Restart/${config_UserChoices_JobName}_clim_startphy.nc, NONE), \ 
    42         ( grilles_gcm.nc, ${R_OUT_ATM_O}/Grid/${config_UserChoices_JobName}_grilles_gcm.nc,      NONE) 
     46        ( grilles_gcm.nc, ${R_OUT_ATM_O}/Grid/${config_UserChoices_JobName}_clim_grilles_gcm.nc,      NONE) 
  • CONFIG/UNIFORM/v5/IPSLCM5CHS_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  
  • CONFIG/UNIFORM/v5/IPSLCM5CHS_v5/GENERAL/PARAM/run.def

    r1698 r1804  
    5252config_inca=_AUTO_  
    5353### Only concerning the program ce0l : for creating file grilles_gcm.nc 
    54 grilles_gcm_netcdf=y 
     54grilles_gcm_netcdf=_AUTO_ 
    5555 
  • CONFIG/UNIFORM/v5/IPSLCM5_v5/EXPERIMENTS/LMDZ/CREATE_amip/COMP/lmdz.card

    r1645 r1804  
    2424 
    2525[ParametersFiles] 
    26 List=   (${SUBMIT_DIR}/PARAM/gcm.def_${RESOL_ATM_3D}, gcm.def), \ 
    27         (${SUBMIT_DIR}/PARAM/run.def,                 run.def), \ 
    28         (${SUBMIT_DIR}/PARAM/config.def_actuel,       config.def) 
     26List=   (${SUBMIT_DIR}/PARAM/physiq.def_L${RESOL_ATM_Z}_${LMDZ_Physics}, physiq.def), \ 
     27        (${SUBMIT_DIR}/PARAM/gcm.def_${RESOL_ATM_3D},    gcm.def),    \ 
     28        (${SUBMIT_DIR}/PARAM/output.def_low        ,  output.def),    \ 
     29        (${SUBMIT_DIR}/PARAM/config.def_actuel     ,  config.def),    \ 
     30        (${SUBMIT_DIR}/PARAM/run.def, .), \ 
     31        (${SUBMIT_DIR}/PARAM/traceur.def, .) 
     32 
    2933 
    3034[RestartFiles] 
     
    3236 
    3337[OutputText] 
    34 List=   (gcm.def, run.def, config.def) 
     38List=   (physiq.def, gcm.def, run.def, config.def, traceur.def, output.def) 
    3539 
    3640[OutputFiles] 
  • CONFIG/UNIFORM/v5/IPSLCM5_v5/EXPERIMENTS/LMDZ/CREATE_amip/config.card

    r1772 r1804  
    1717#============================ 
    1818#D-- leap, noleap, 360d 
    19 CalendarType=leap 
     19CalendarType=noleap 
    2020#D-- Begin and end of job  
    2121#D-- "YYYY-MM-DD" 
  • CONFIG/UNIFORM/v5/IPSLCM5_v5/EXPERIMENTS/LMDZ/CREATE_clim/COMP/lmdz.card

    r1645 r1804  
    2525 
    2626[ParametersFiles] 
    27 List=   (${SUBMIT_DIR}/PARAM/gcm.def_${RESOL_ATM_3D}, gcm.def), \ 
    28         (${SUBMIT_DIR}/PARAM/run.def,                 run.def), \ 
    29         (${SUBMIT_DIR}/PARAM/config.def_actuel,       config.def) 
     27List=   (${SUBMIT_DIR}/PARAM/physiq.def_L${RESOL_ATM_Z}_${LMDZ_Physics}, physiq.def), \ 
     28        (${SUBMIT_DIR}/PARAM/gcm.def_${RESOL_ATM_3D},    gcm.def),    \ 
     29        (${SUBMIT_DIR}/PARAM/output.def_low        ,  output.def),    \ 
     30        (${SUBMIT_DIR}/PARAM/config.def_actuel     ,  config.def),    \ 
     31        (${SUBMIT_DIR}/PARAM/run.def, .), \ 
     32        (${SUBMIT_DIR}/PARAM/traceur.def, .) 
     33 
    3034 
    3135[RestartFiles] 
     
    3337 
    3438[OutputText] 
    35 List=   (gcm.def, run.def, config.def) 
     39List=   (physiq.def, gcm.def, run.def, config.def, traceur.def, output.def) 
    3640 
    3741[OutputFiles] 
    3842List=   ( limit.nc,       ${R_OUT_ATM_O}/Boundary/${config_UserChoices_JobName}_clim_limit.nc,   NONE), \ 
    39         ( climoz_LMDZ.nc, ${R_OUT_ATM_O}/Boundary/${config_UserChoices_JobName}_climoz_LMDZ.nc,  NONE), \ 
     43        ( climoz_LMDZ.nc, ${R_OUT_ATM_O}/Boundary/${config_UserChoices_JobName}_clim_climoz_LMDZ.nc,  NONE), \ 
    4044        ( start.nc,       ${R_OUT_ATM_O}/Restart/${config_UserChoices_JobName}_clim_start.nc,    NONE), \ 
    4145        ( startphy.nc,    ${R_OUT_ATM_O}/Restart/${config_UserChoices_JobName}_clim_startphy.nc, NONE), \ 
    42         ( grilles_gcm.nc, ${R_OUT_ATM_O}/Grid/${config_UserChoices_JobName}_grilles_gcm.nc,      NONE) 
     46        ( grilles_gcm.nc, ${R_OUT_ATM_O}/Grid/${config_UserChoices_JobName}_clim_grilles_gcm.nc,      NONE) 
  • CONFIG/UNIFORM/v5/IPSLCM5_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  
  • CONFIG/UNIFORM/v5/IPSLCM5_v5/GENERAL/PARAM/run.def

    r1698 r1804  
    5252config_inca=_AUTO_  
    5353### Only concerning the program ce0l : for creating file grilles_gcm.nc 
    54 grilles_gcm_netcdf=y 
     54grilles_gcm_netcdf=_AUTO_ 
    5555 
  • CONFIG/UNIFORM/v5/LMDZORINCA_v5/EXPERIMENTS/LMDZ/CREATE_amip/COMP/lmdz.card

    r1645 r1804  
    2424 
    2525[ParametersFiles] 
    26 List=   (${SUBMIT_DIR}/PARAM/gcm.def_${RESOL_ATM_3D}, gcm.def), \ 
    27         (${SUBMIT_DIR}/PARAM/run.def,                 run.def), \ 
    28         (${SUBMIT_DIR}/PARAM/config.def_actuel,       config.def) 
     26List=   (${SUBMIT_DIR}/PARAM/physiq.def_L${RESOL_ATM_Z}_${LMDZ_Physics}, physiq.def), \ 
     27        (${SUBMIT_DIR}/PARAM/gcm.def_${RESOL_ATM_3D},    gcm.def),    \ 
     28        (${SUBMIT_DIR}/PARAM/output.def_low        ,  output.def),    \ 
     29        (${SUBMIT_DIR}/PARAM/config.def_actuel     ,  config.def),    \ 
     30        (${SUBMIT_DIR}/PARAM/run.def, .), \ 
     31        (${SUBMIT_DIR}/PARAM/traceur.def, .) 
     32 
    2933 
    3034[RestartFiles] 
     
    3236 
    3337[OutputText] 
    34 List=   (gcm.def, run.def, config.def) 
     38List=   (physiq.def, gcm.def, run.def, config.def, traceur.def, output.def) 
    3539 
    3640[OutputFiles] 
  • CONFIG/UNIFORM/v5/LMDZORINCA_v5/EXPERIMENTS/LMDZ/CREATE_amip/config.card

    r1772 r1804  
    1717#============================ 
    1818#D-- leap, noleap, 360d 
    19 CalendarType=leap 
     19CalendarType=noleap 
    2020#D-- Begin and end of job  
    2121#D-- "YYYY-MM-DD" 
  • CONFIG/UNIFORM/v5/LMDZORINCA_v5/EXPERIMENTS/LMDZ/CREATE_clim/COMP/lmdz.card

    r1645 r1804  
    2525 
    2626[ParametersFiles] 
    27 List=   (${SUBMIT_DIR}/PARAM/gcm.def_${RESOL_ATM_3D}, gcm.def), \ 
    28         (${SUBMIT_DIR}/PARAM/run.def,                 run.def), \ 
    29         (${SUBMIT_DIR}/PARAM/config.def_actuel,       config.def) 
     27List=   (${SUBMIT_DIR}/PARAM/physiq.def_L${RESOL_ATM_Z}_${LMDZ_Physics}, physiq.def), \ 
     28        (${SUBMIT_DIR}/PARAM/gcm.def_${RESOL_ATM_3D},    gcm.def),    \ 
     29        (${SUBMIT_DIR}/PARAM/output.def_low        ,  output.def),    \ 
     30        (${SUBMIT_DIR}/PARAM/config.def_actuel     ,  config.def),    \ 
     31        (${SUBMIT_DIR}/PARAM/run.def, .), \ 
     32        (${SUBMIT_DIR}/PARAM/traceur.def, .) 
     33 
    3034 
    3135[RestartFiles] 
     
    3337 
    3438[OutputText] 
    35 List=   (gcm.def, run.def, config.def) 
     39List=   (physiq.def, gcm.def, run.def, config.def, traceur.def, output.def) 
    3640 
    3741[OutputFiles] 
    3842List=   ( limit.nc,       ${R_OUT_ATM_O}/Boundary/${config_UserChoices_JobName}_clim_limit.nc,   NONE), \ 
    39         ( climoz_LMDZ.nc, ${R_OUT_ATM_O}/Boundary/${config_UserChoices_JobName}_climoz_LMDZ.nc,  NONE), \ 
     43        ( climoz_LMDZ.nc, ${R_OUT_ATM_O}/Boundary/${config_UserChoices_JobName}_clim_climoz_LMDZ.nc,  NONE), \ 
    4044        ( start.nc,       ${R_OUT_ATM_O}/Restart/${config_UserChoices_JobName}_clim_start.nc,    NONE), \ 
    4145        ( startphy.nc,    ${R_OUT_ATM_O}/Restart/${config_UserChoices_JobName}_clim_startphy.nc, NONE), \ 
    42         ( grilles_gcm.nc, ${R_OUT_ATM_O}/Grid/${config_UserChoices_JobName}_grilles_gcm.nc,      NONE) 
     46        ( grilles_gcm.nc, ${R_OUT_ATM_O}/Grid/${config_UserChoices_JobName}_clim_grilles_gcm.nc,      NONE) 
  • CONFIG/UNIFORM/v5/LMDZORINCA_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  
  • CONFIG/UNIFORM/v5/LMDZORINCA_v5/GENERAL/PARAM/run.def

    r1697 r1804  
    5252config_inca=_AUTO_  
    5353### Only concerning the program ce0l : for creating file grilles_gcm.nc 
    54 grilles_gcm_netcdf=y 
     54grilles_gcm_netcdf=_AUTO_ 
    5555 
  • CONFIG/UNIFORM/v5/LMDZOR_v5/EXPERIMENTS/LMDZ/CREATE_amip/COMP/lmdz.card

    r1645 r1804  
    2424 
    2525[ParametersFiles] 
    26 List=   (${SUBMIT_DIR}/PARAM/gcm.def_${RESOL_ATM_3D}, gcm.def), \ 
    27         (${SUBMIT_DIR}/PARAM/run.def,                 run.def), \ 
    28         (${SUBMIT_DIR}/PARAM/config.def_actuel,       config.def) 
     26List=   (${SUBMIT_DIR}/PARAM/physiq.def_L${RESOL_ATM_Z}_${LMDZ_Physics}, physiq.def), \ 
     27        (${SUBMIT_DIR}/PARAM/gcm.def_${RESOL_ATM_3D},    gcm.def),    \ 
     28        (${SUBMIT_DIR}/PARAM/output.def_low        ,  output.def),    \ 
     29        (${SUBMIT_DIR}/PARAM/config.def_actuel     ,  config.def),    \ 
     30        (${SUBMIT_DIR}/PARAM/run.def, .), \ 
     31        (${SUBMIT_DIR}/PARAM/traceur.def, .) 
     32 
    2933 
    3034[RestartFiles] 
     
    3236 
    3337[OutputText] 
    34 List=   (gcm.def, run.def, config.def) 
     38List=   (physiq.def, gcm.def, run.def, config.def, traceur.def, output.def) 
    3539 
    3640[OutputFiles] 
  • CONFIG/UNIFORM/v5/LMDZOR_v5/EXPERIMENTS/LMDZ/CREATE_amip/config.card

    r1772 r1804  
    1717#============================ 
    1818#D-- leap, noleap, 360d 
    19 CalendarType=leap 
     19CalendarType=noleap 
    2020#D-- Begin and end of job  
    2121#D-- "YYYY-MM-DD" 
  • CONFIG/UNIFORM/v5/LMDZOR_v5/EXPERIMENTS/LMDZ/CREATE_clim/COMP/lmdz.card

    r1645 r1804  
    2525 
    2626[ParametersFiles] 
    27 List=   (${SUBMIT_DIR}/PARAM/gcm.def_${RESOL_ATM_3D}, gcm.def), \ 
    28         (${SUBMIT_DIR}/PARAM/run.def,                 run.def), \ 
    29         (${SUBMIT_DIR}/PARAM/config.def_actuel,       config.def) 
     27List=   (${SUBMIT_DIR}/PARAM/physiq.def_L${RESOL_ATM_Z}_${LMDZ_Physics}, physiq.def), \ 
     28        (${SUBMIT_DIR}/PARAM/gcm.def_${RESOL_ATM_3D},    gcm.def),    \ 
     29        (${SUBMIT_DIR}/PARAM/output.def_low        ,  output.def),    \ 
     30        (${SUBMIT_DIR}/PARAM/config.def_actuel     ,  config.def),    \ 
     31        (${SUBMIT_DIR}/PARAM/run.def, .), \ 
     32        (${SUBMIT_DIR}/PARAM/traceur.def, .) 
     33 
    3034 
    3135[RestartFiles] 
     
    3337 
    3438[OutputText] 
    35 List=   (gcm.def, run.def, config.def) 
     39List=   (physiq.def, gcm.def, run.def, config.def, traceur.def, output.def) 
    3640 
    3741[OutputFiles] 
    3842List=   ( limit.nc,       ${R_OUT_ATM_O}/Boundary/${config_UserChoices_JobName}_clim_limit.nc,   NONE), \ 
    39         ( climoz_LMDZ.nc, ${R_OUT_ATM_O}/Boundary/${config_UserChoices_JobName}_climoz_LMDZ.nc,  NONE), \ 
     43        ( climoz_LMDZ.nc, ${R_OUT_ATM_O}/Boundary/${config_UserChoices_JobName}_clim_climoz_LMDZ.nc,  NONE), \ 
    4044        ( start.nc,       ${R_OUT_ATM_O}/Restart/${config_UserChoices_JobName}_clim_start.nc,    NONE), \ 
    4145        ( startphy.nc,    ${R_OUT_ATM_O}/Restart/${config_UserChoices_JobName}_clim_startphy.nc, NONE), \ 
    42         ( grilles_gcm.nc, ${R_OUT_ATM_O}/Grid/${config_UserChoices_JobName}_grilles_gcm.nc,      NONE) 
     46        ( grilles_gcm.nc, ${R_OUT_ATM_O}/Grid/${config_UserChoices_JobName}_clim_grilles_gcm.nc,      NONE) 
  • CONFIG/UNIFORM/v5/LMDZOR_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  
  • CONFIG/UNIFORM/v5/LMDZOR_v5/GENERAL/PARAM/run.def

    r1698 r1804  
    5252config_inca=_AUTO_  
    5353### Only concerning the program ce0l : for creating file grilles_gcm.nc 
    54 grilles_gcm_netcdf=y 
     54grilles_gcm_netcdf=_AUTO_ 
    5555 
  • CONFIG/UNIFORM/v5/LMDZREPR_v5/EXPERIMENTS/LMDZ/CREATE_amip/COMP/lmdz.card

    r1645 r1804  
    2424 
    2525[ParametersFiles] 
    26 List=   (${SUBMIT_DIR}/PARAM/gcm.def_${RESOL_ATM_3D}, gcm.def), \ 
    27         (${SUBMIT_DIR}/PARAM/run.def,                 run.def), \ 
    28         (${SUBMIT_DIR}/PARAM/config.def_actuel,       config.def) 
     26List=   (${SUBMIT_DIR}/PARAM/physiq.def_L${RESOL_ATM_Z}_${LMDZ_Physics}, physiq.def), \ 
     27        (${SUBMIT_DIR}/PARAM/gcm.def_${RESOL_ATM_3D},    gcm.def),    \ 
     28        (${SUBMIT_DIR}/PARAM/output.def_low        ,  output.def),    \ 
     29        (${SUBMIT_DIR}/PARAM/config.def_actuel     ,  config.def),    \ 
     30        (${SUBMIT_DIR}/PARAM/run.def, .), \ 
     31        (${SUBMIT_DIR}/PARAM/traceur.def, .) 
     32 
    2933 
    3034[RestartFiles] 
     
    3236 
    3337[OutputText] 
    34 List=   (gcm.def, run.def, config.def) 
     38List=   (physiq.def, gcm.def, run.def, config.def, traceur.def, output.def) 
    3539 
    3640[OutputFiles] 
  • CONFIG/UNIFORM/v5/LMDZREPR_v5/EXPERIMENTS/LMDZ/CREATE_amip/config.card

    r1772 r1804  
    1717#============================ 
    1818#D-- leap, noleap, 360d 
    19 CalendarType=leap 
     19CalendarType=noleap 
    2020#D-- Begin and end of job  
    2121#D-- "YYYY-MM-DD" 
  • CONFIG/UNIFORM/v5/LMDZREPR_v5/EXPERIMENTS/LMDZ/CREATE_clim/COMP/lmdz.card

    r1645 r1804  
    2525 
    2626[ParametersFiles] 
    27 List=   (${SUBMIT_DIR}/PARAM/gcm.def_${RESOL_ATM_3D}, gcm.def), \ 
    28         (${SUBMIT_DIR}/PARAM/run.def,                 run.def), \ 
    29         (${SUBMIT_DIR}/PARAM/config.def_actuel,       config.def) 
     27List=   (${SUBMIT_DIR}/PARAM/physiq.def_L${RESOL_ATM_Z}_${LMDZ_Physics}, physiq.def), \ 
     28        (${SUBMIT_DIR}/PARAM/gcm.def_${RESOL_ATM_3D},    gcm.def),    \ 
     29        (${SUBMIT_DIR}/PARAM/output.def_low        ,  output.def),    \ 
     30        (${SUBMIT_DIR}/PARAM/config.def_actuel     ,  config.def),    \ 
     31        (${SUBMIT_DIR}/PARAM/run.def, .), \ 
     32        (${SUBMIT_DIR}/PARAM/traceur.def, .) 
     33 
    3034 
    3135[RestartFiles] 
     
    3337 
    3438[OutputText] 
    35 List=   (gcm.def, run.def, config.def) 
     39List=   (physiq.def, gcm.def, run.def, config.def, traceur.def, output.def) 
    3640 
    3741[OutputFiles] 
    3842List=   ( limit.nc,       ${R_OUT_ATM_O}/Boundary/${config_UserChoices_JobName}_clim_limit.nc,   NONE), \ 
    39         ( climoz_LMDZ.nc, ${R_OUT_ATM_O}/Boundary/${config_UserChoices_JobName}_climoz_LMDZ.nc,  NONE), \ 
     43        ( climoz_LMDZ.nc, ${R_OUT_ATM_O}/Boundary/${config_UserChoices_JobName}_clim_climoz_LMDZ.nc,  NONE), \ 
    4044        ( start.nc,       ${R_OUT_ATM_O}/Restart/${config_UserChoices_JobName}_clim_start.nc,    NONE), \ 
    4145        ( startphy.nc,    ${R_OUT_ATM_O}/Restart/${config_UserChoices_JobName}_clim_startphy.nc, NONE), \ 
    42         ( grilles_gcm.nc, ${R_OUT_ATM_O}/Grid/${config_UserChoices_JobName}_grilles_gcm.nc,      NONE) 
     46        ( grilles_gcm.nc, ${R_OUT_ATM_O}/Grid/${config_UserChoices_JobName}_clim_grilles_gcm.nc,      NONE) 
  • 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  
  • CONFIG/UNIFORM/v5/LMDZREPR_v5/GENERAL/PARAM/run.def

    r1698 r1804  
    5252config_inca=_AUTO_  
    5353### Only concerning the program ce0l : for creating file grilles_gcm.nc 
    54 grilles_gcm_netcdf=y 
     54grilles_gcm_netcdf=_AUTO_ 
    5555 
Note: See TracChangeset for help on using the changeset viewer.