Ignore:
Timestamp:
12/05/18 11:48:42 (6 years ago)
Author:
jgipsl
Message:

Updated configuration to be used with ORCHIDEE/trunk revision 5639 or later including the nitrogen cycle. In all experiences in this commit,

the nitrogen cycle is imposed using input file (STOMATE_IMPOSE_CN=y, STOMATE_READ_CN=y, NINPUT_UPDATE=0Y)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • CONFIG/UNIFORM/v6/LMDZOR_v6.3/GENERAL/DRIVER/stomate.driver

    r3563 r4173  
    5656    fi 
    5757 
     58 
     59    # Modify in orchidee.def NINPUT_UPDATE if it is set in stomate.card section UserChoices 
     60    # NINPUT_UPDATE inidcates if the nitrogen maps should be updated and at which frequency 
     61    if [ ! X${stomate_UserChoices_NINPUT_UPDATE} = X ] ; then 
     62        # Take the value from stomate.card 
     63        IGCM_comp_modifyDefFile nonblocker orchidee.def NINPUT_UPDATE   ${stomate_UserChoices_NINPUT_UPDATE} 
     64    else 
     65        # Set default value 0Y 
     66        IGCM_comp_modifyDefFile nonblocker orchidee.def NINPUT_UPDATE 0Y 
     67    fi 
     68 
     69    # Modify in orchidee.def STOMATE_IMPOSE_CN if it is set in stomate.card section UserChoices 
     70    # STOMATE_IMPOSE_CN inidcates if the nitrogen should be imposed or not.  
     71    if [ ! X${stomate_UserChoices_STOMATE_IMPOSE_CN} = X ] ; then 
     72        # Take the value from stomate.card 
     73        IGCM_comp_modifyDefFile nonblocker orchidee.def STOMATE_IMPOSE_CN   ${stomate_UserChoices_STOMATE_IMPOSE_CN} 
     74    else 
     75        # Set default value n (nitrogen is not imposed) 
     76        IGCM_comp_modifyDefFile nonblocker orchidee.def STOMATE_IMPOSE_CN n 
     77    fi 
     78 
     79 
    5880    IGCM_debug_PopStack "SBG_Update" 
    5981} 
Note: See TracChangeset for help on using the changeset viewer.