Changeset 1622 for CONFIG/IPSLCM/IPSLCM5_v4
- Timestamp:
- 12/16/11 10:57:15 (13 years ago)
- Location:
- CONFIG/IPSLCM/IPSLCM5_v4/GENERAL
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
CONFIG/IPSLCM/IPSLCM5_v4/GENERAL/DRIVER/oasis.driver
r1549 r1622 1 1 #!/bin/ksh 2 2 #----------------------------------- 3 function 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 3 17 CPL_Initialize () 4 18 { … … 69 83 fi 70 84 85 86 ## Activate coupling to ocean model in LMDZ run.def file 87 LMDZ_sed run.def type_ocean couple 88 71 89 ## Calculate lag for transfer of fields from atmosphere -> ocean. 72 90 ## LAG_ATM="1day in sec"/day_step * iphysiq/nsplit_phys -
CONFIG/IPSLCM/IPSLCM5_v4/GENERAL/DRIVER/orchidee.driver
r1549 r1622 14 14 15 15 IGCM_debug_PopStack "ORCHIDEE_sed" 16 return $RET 17 } 18 19 function LMDZ_sed 20 { 21 IGCM_debug_PushStack "LMDZ_sed" 22 23 sed -e "s/^${2}\ *=.*/${2}= ${3}/" ${1} > ${1}.tmp 24 RET=$? 25 echo "LMDZ_sed : ${1} ${2} ${3}" 26 \mv ${1}.tmp ${1} 27 28 IGCM_debug_PopStack "LMDZ_sed" 16 29 return $RET 17 30 } … … 113 126 #IGCM_sys_Put_Out ${RUN_DIR}/run.def ${R_SAVE}/${PREFIX}_run.def 114 127 128 129 # Activate vegetation model in LMDZ run.def file 130 LMDZ_sed run.def VEGET y 131 115 132 IGCM_debug_PopStack "SRF_Update" 116 133 } -
CONFIG/IPSLCM/IPSLCM5_v4/GENERAL/PARAM/run.def
r1543 r1622 35 35 ### 36 36 ### type_ocean = force / slab /couple 37 type_ocean=couple 37 ### type_ocean is modified automatically to couple if oasis.driver is used 38 type_ocean=force 38 39 ### version_ocean = nemo / opa8 39 40 version_ocean=nemo … … 41 42 cpl_current=y 42 43 ### VEGET= y si ORCHIDEE, =n si bucket 43 VEGET=y 44 ### VEGET is modified automatically to y if orchidee.driver is used 45 VEGET=n 44 46
Note: See TracChangeset
for help on using the changeset viewer.