Ignore:
Timestamp:
12/16/11 10:57:15 (13 years ago)
Author:
jgipsl
Message:

Changed default values for type_ocean and VEGET in run.def. Now the default is LMDZ forced without ORCHIDEE and without ocean. Theses values are changed automatically if oasis.driver and/or orchidee.driver is used.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • CONFIG/IPSLCM/IPSLCM5_v4/GENERAL/DRIVER/oasis.driver

    r1549 r1622  
    11#!/bin/ksh 
    22#----------------------------------- 
     3function LMDZ_sed 
     4{ 
     5    IGCM_debug_PushStack "LMDZ_sed" 
     6 
     7    sed -e "s/^${2}\ *=.*/${2}= ${3}/" ${1} > ${1}.tmp 
     8    RET=$? 
     9    echo "LMDZ_sed : ${1} ${2} ${3}" 
     10    \mv ${1}.tmp ${1} 
     11 
     12    IGCM_debug_PopStack "LMDZ_sed" 
     13    return $RET 
     14} 
     15 
     16 
    317CPL_Initialize () 
    418{ 
     
    6983    fi 
    7084 
     85 
     86    ## Activate coupling to ocean model in LMDZ run.def file 
     87    LMDZ_sed run.def type_ocean couple 
     88 
    7189    ## Calculate lag for transfer of fields from atmosphere -> ocean. 
    7290    ## LAG_ATM="1day in sec"/day_step * iphysiq/nsplit_phys 
Note: See TracChangeset for help on using the changeset viewer.