Ignore:
Timestamp:
07/15/11 10:45:11 (13 years ago)
Author:
jgipsl
Message:
  • Added switch between old and new physics in LMDZ :

In lmdz.card, put LMDZ_Physics=AP for old physics or LMDZ_Physics=NPv3.0
to new physics. If LMDZ_Physics is not present in lmdz.card, default
value AP will be used. NB : new physics is still under work and the
parameters may change.

Added suffix _AP for old physiq.def files
Added physiq.def_L39_NPv3.0 : the beginning of this file correspond to
config.def and the end to physiq.def_L39_NPv3.0 in IPSLCM5B
configuration

  • Changed to ok_ade=ok_aie=y for very basse resolution 32x24x11 : the aerososls for Historical run now available at this resolution.
Location:
CONFIG/LMDZOR/branches/LMDZOR_v4/LMDZOR
Files:
1 added
4 edited
3 moved

Legend:

Unmodified
Added
Removed
  • CONFIG/LMDZOR/branches/LMDZOR_v4/LMDZOR/COMP/lmdz.card_AMIP

    r1370 r1512  
    55 
    66[UserChoices] 
     7# Physics package to use : AP for standard/old physics(defalut) or NPv3.0 for new physics 
     8LMDZ_Physics=AP 
     9#LMDZ_Physics=NPv3.0 
     10 
    711# You can choose here the name of create_etat0 you want to use 
    812# If noting is defined here, the job will get the JobName in the file  ../CREATE/config.card 
     
    5963 
    6064[ParametersFiles] 
    61 List=   (${SUBMIT_DIR}/PARAM/physiq.def_L${RESOL_ATM_Z}, physiq.def), \ 
     65List=   (${SUBMIT_DIR}/PARAM/physiq.def_L${RESOL_ATM_Z}_${LMDZ_Physics}, physiq.def), \ 
    6266        (${SUBMIT_DIR}/PARAM/gcm.def_${RESOL_ATM_3D},    gcm.def),    \ 
    6367        (${SUBMIT_DIR}/PARAM/cosp_input_nl.txt,                .),    \ 
  • CONFIG/LMDZOR/branches/LMDZOR_v4/LMDZOR/COMP/lmdz.card_Climat

    r1370 r1512  
    55 
    66[UserChoices] 
     7# Physics package to use : AP for standard/old physics(defalut) or NPv3.0 for new physics 
     8LMDZ_Physics=AP 
     9#LMDZ_Physics=NPv3.0 
     10 
    711# You can choose here the name of create_etat0 you want to use 
    812# If noting is defined here, the job will get the JobName in the file  ../CREATE/config.card 
     
    4751 
    4852[ParametersFiles] 
    49 List=   (${SUBMIT_DIR}/PARAM/physiq.def_L${RESOL_ATM_Z}, physiq.def), \ 
     53List=   (${SUBMIT_DIR}/PARAM/physiq.def_L${RESOL_ATM_Z}_${LMDZ_Physics}, physiq.def), \ 
    5054        (${SUBMIT_DIR}/PARAM/gcm.def_${RESOL_ATM_3D},    gcm.def),    \ 
    5155        (${SUBMIT_DIR}/PARAM/cosp_input_nl.txt,                .),    \ 
  • CONFIG/LMDZOR/branches/LMDZOR_v4/LMDZOR/COMP/lmdz.driver

    r1370 r1512  
     1 
    12# $Id$ 
    23# 
     
    3738            CalendarTypeForLmdz=earth_360d 
    3839    esac 
     40 
     41 
     42         
     43    ##- LMDZ physics version 
     44    ##  Read LMDZ_Physics option in lmdz.card, if not present take default value AP (old physics)  
     45    if [ ! X${lmdz_UserChoices_LMDZ_Physics} = X ] ; then 
     46        LMDZ_Physics=${lmdz_UserChoices_LMDZ_Physics} 
     47    else 
     48        LMDZ_Physics=AP 
     49    fi 
     50    echo LMDZ physics version : ${LMDZ_Physics} 
     51 
     52 
    3953 
    4054    ##- Create_etat0_limit version 
     
    199213    fi 
    200214 
    201     ## gcm.def parameters : no change since gcm.def_${RESOL_ATM_3D} is used and already modified 
     215    ## gcm.def parameters :  
     216    # Modification only for new physics 
     217    if [ X${LMDZ_Physics} = X"NPv3.0" ] ; then 
     218        LMDZ_sed gcm.def iphysiq     5 
     219    fi 
    202220 
    203221    ## run.def parameters 
  • CONFIG/LMDZOR/branches/LMDZOR_v4/LMDZOR/PARAM/physiq.def_L11_AP

    r1510 r1512  
    165165# 
    166166### ok_ade=y/n   flag Aerosol direct effect 
    167 ok_ade=n 
     167ok_ade=y 
    168168### ok_aie=y/n   flag Aerosol indirect effect 
    169 ok_aie=n 
     169ok_aie=y 
    170170### aer_type =   Aerosol variation type : actuel / preind / scenario / annuel 
    171171# variable modife avec lmdz.card 
  • CONFIG/LMDZOR/branches/LMDZOR_v4/LMDZOR/config.card

    r1289 r1512  
    129129RebuildFrequency=1Y 
    130130#D- Do we rebuild parallel output from archive (use NONE to use SCRATCHDIR as buffer) 
    131 RebuildFromArchive=true 
     131RebuildFromArchive=NONE 
    132132#D- If you want to produce time series, this flag determines 
    133133#D- frequency of post-processing submission (NONE if you don't want) 
Note: See TracChangeset for help on using the changeset viewer.