Changeset 1557 for CONFIG/LMDZORINCA
- Timestamp:
- 09/15/11 11:01:06 (13 years ago)
- Location:
- CONFIG/LMDZORINCA/tags/LMDZORINCA_v2/EXP_NMHC_AER
- Files:
-
- 2 deleted
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
CONFIG/LMDZORINCA/tags/LMDZORINCA_v2/EXP_NMHC_AER/COMP/lmdz.card
r1225 r1557 4 4 5 5 [UserChoices] 6 LMDZ_NbPeriod_adjust=0 7 # LMDZ_NbPeriod_adjust=0 8 # To force usage of this Bands file, put LMDZ_NbPeriod_adjust=0 and replace XXXXXXX by Restart Job Name 9 # LMDZ_Bands_file_name=${ARCHIVE}/IGCM_OUT/IPSLCM5/XXXXXXX/ATM/Debug/XXXXXXX_Bands_96x95x19_3prc.dat_3 10 LMDZ_Bands_file_name=/dmnfs11/cont003/p86cozic/IGCM_OUT/LMDZORINCA/NMHC_AER/LOI_NA_AR5WERF_co2/ATM/Debug/LOI_NA_AR5WERF_co2_20060501_20060531_Bands_96x95x19_4prc.dat 6 LMDZ_NbPeriod_adjust=3 7 #LMDZ_NbPeriod_adjust=0 8 # To force usage of this Bands file, put LMDZ_NbPeriod_adjust=0 and replace XXXXXXX by Name/Resolution/NB Prco Job Restart 9 # LMDZ_Bands_file_name=${ARCHIVE}/IGCM_OUT/LMDZORINCA/XXXXXXX/ATM/Debug/XXXXXXX_Bands_XXXXXXX_XXXprc.dat_3 11 10 11 # Other specific parameters to this experience 12 aer_type=scenario 13 pmagic=0.0 12 14 13 15 [InitialStateFiles] -
CONFIG/LMDZORINCA/tags/LMDZORINCA_v2/EXP_NMHC_AER/COMP/lmdz.driver
r1297 r1557 3 3 4 4 #----------------------------------------------------------------- 5 function LMDZ_sed 6 { 7 IGCM_debug_PushStack "LMDZ_sed" 8 9 sed -e "s/^${2}\ *=.*/${2}= ${3}/" ${1} > ${1}.tmp 10 RET=$? 11 echo "LMDZ_sed : ${1} ${2} ${3}" 12 \mv ${1}.tmp ${1} 13 14 IGCM_debug_PopStack "LMDZ_sed" 15 return $RET 16 } 17 18 #----------------------------------------------------------------- 19 5 20 function ATM_Initialize 6 21 { … … 36 51 fi 37 52 38 ##--Frequency purpose .... 53 54 ##-- Output frequency purpose .... 39 55 ##-- Initialisation .... 40 OK_instan=n 41 ##-- 42 OK_journe=n 43 OK_mensuel=y 56 ok_mensuel=y 57 ok_journe=n 58 ok_hf=n 59 ok_hf3h=n 60 ok_hf3hm=n 61 ok_stn=n 44 62 45 case ${config_UserChoices_PeriodLength} in46 1Y|1y|1M|1m) OK_mensuel=y ;;47 5D|5d|1D|1d) OK_journe=n ;;48 esac49 50 for frequency in ${config_ATM_WriteFrequency} ; do51 case ${frequency} in52 5D|5d|1D|1d) OK_journe=n ;;53 esac54 done55 56 ##--Variables used by LMDZ --57 PAT_INST=$( grep 'OK_instan' ${SUBMIT_DIR}/PARAM/physiq.def )58 PAT_JOUR=$( grep 'OK_journe' ${SUBMIT_DIR}/PARAM/physiq.def )59 PAT_MOIS=$( grep 'OK_mensuel' ${SUBMIT_DIR}/PARAM/physiq.def )60 61 PAT_iphysiq=$( grep 'iphysiq' ${SUBMIT_DIR}/PARAM/gcm.def )62 PAT_iperiod=$( grep 'iperiod' ${SUBMIT_DIR}/PARAM/gcm.def | tail -1)63 PAT_day_step=$( grep 'day_step' ${SUBMIT_DIR}/PARAM/gcm.def )64 PAT_ecritphy=$( grep 'ecritphy' ${SUBMIT_DIR}/PARAM/gcm.def )65 63 66 64 … … 75 73 76 74 77 ##-- This could be define in lmdz.card, inside section [UserChoices]78 ##-- Otherwise we get the value in *.def79 iperiod=$(grep iperiod ${SUBMIT_DIR}/PARAM/gcm.def | awk -F= '{print $2}' | tail -1)80 iphysiq=$(grep iphysiq ${SUBMIT_DIR}/PARAM/gcm.def | awk -F= '{print $2}')81 # day_step : number of steps per day (multiple of iperiod)82 (( day_step = 48 * iphysiq ))83 84 75 IGCM_debug_PopStack "ATM_Initialize" 85 76 } … … 91 82 92 83 ecritphy=${PeriodLengthInDays} 84 LMDZ_ecrit_ISCCP=${PeriodLengthInDays}. 85 LMDZ_periodav=${PeriodLengthInDays}. 93 86 94 87 ##-- Remise ou non a zero de la date initiale de LMDZ pour le fichier run.def … … 116 109 [ ${CumulPeriod} -gt 1 ] && ( IGCM_sys_Get ${R_OUT_ATM_D}/${config_UserChoices_JobName}_Bands_${BandsResol}_${NUM_PROC_ATM}prc.dat_${RefPeriod} Bands_${BandsResol}_${NUM_PROC_ATM}prc.dat; IGCM_sys_Chmod u+w Bands_${BandsResol}_${NUM_PROC_ATM}prc.dat ) 117 110 118 ## Mise en forme du fichier physiq.def119 sed -e "s/OK_instan=.*/OK_instan=${OK_instan}/" \120 -e "s/OK_journe=.*/OK_journe=${OK_journe}/" \121 -e "s/OK_mensuel=.*/OK_mensuel=${OK_mensuel}/" \122 physiq.def > physiq.def.tmp123 IGCM_sys_Mv physiq.def.tmp physiq.def124 111 125 ## Mise en forme du fichier gcm.def 126 sed -e "s/${PAT_ecritphy}/ecritphy=${ecritphy}/" \ 127 -e "s/${PAT_day_step}/day_step=${day_step}/" \ 128 -e "s/${PAT_iperiod}/iperiod=${iperiod}/" \ 129 -e "s/${PAT_iphysiq}/iphysiq=${iphysiq}/" \ 130 gcm.def > gcm.def.tmp 131 IGCM_sys_Mv gcm.def.tmp gcm.def 112 ## physiq.def parameters modified from initial physiq.def 113 # columns in phys_output_filekeys refer to the filenames given in phys_out_filenames in output.def : 114 # histmth histday histhf histfh3h histhf3hm histstn 115 LMDZ_sed physiq.def phys_out_filekeys "${ok_mensuel} ${ok_journe} ${ok_hf} ${ok_hf3h} ${ok_hf3hm} ${ok_stn}" 116 LMDZ_sed physiq.def ecrit_ISCCP ${LMDZ_ecrit_ISCCP} 132 117 133 greg_dat=$( IGCM_date_ConvertFormatToGregorian $PeriodDateBegin )134 jul_dat=$( IGCM_date_ConvertGregorianDateToJulian $greg_dat )135 nbjour=$( expr \( $jul_dat \% 1000 \) )136 yractu=$( expr $greg_dat / 10000 )137 echo "dayref = " $nbjour "year actu = " $yractu138 118 139 ## Mise en forme du fichier run.def 140 sed -e "s/_dayref_/${nbjour}/" \ 141 -e "s/_anneeref_/${yractu}/" \ 142 -e "s/_calend_/${CalendarTypeForLmdz}/" \ 143 -e "s/_nday_/${PeriodLengthInDays}/" \ 144 -e "s/_raz_date_/${RAZ_DATE}/" \ 145 -e "s/_adjust_/${LMDZ_adjust}/" \ 146 run.def > run.def.tmp 147 IGCM_sys_Mv run.def.tmp run.def 119 ## run.def parameters 120 LMDZ_sed run.def dayref ${InitDay} 121 LMDZ_sed run.def anneeref ${InitYear} 122 LMDZ_sed run.def calend ${CalendarTypeForLmdz} 123 LMDZ_sed run.def nday ${PeriodLengthInDays} 124 LMDZ_sed run.def raz_date ${RAZ_DATE} 125 LMDZ_sed run.def periodav ${LMDZ_periodav} 126 LMDZ_sed run.def adjust ${LMDZ_adjust} 127 128 ## Other specific parameters to this experience 129 if [ ! X${lmdz_UserChoices_aer_type} = X ] ; then 130 LMDZ_sed physiq.def aer_type ${lmdz_UserChoices_aer_type} 131 fi 132 if [ ! X${lmdz_UserChoices_pmagic} = X ] ; then 133 LMDZ_sed physiq.def pmagic ${lmdz_UserChoices_pmagic} 134 fi 148 135 149 136 IGCM_debug_PopStack "ATM_Update" -
CONFIG/LMDZORINCA/tags/LMDZORINCA_v2/EXP_NMHC_AER/PARAM/gcm.def
r1064 r1557 4 4 ## periode pour le pas Matsuno (en pas) 5 5 iperiod=5 6 ## periode de la dissipation (en pas)7 idissip=108 6 ## choix de l'operateur de dissipation (star ou non star ) 9 7 lstardis=y … … 24 22 ## choix du shema d'integration temporelle (Matsuno ou Matsuno-leapfrog) 25 23 purmats=n 26 ## guide ou pas 27 ok_guide=.true. 28 ## utilisation de restart de la version LMDZ3 29 old_restart= 30 ## avec ou sans physique 31 ##physic=n 32 iflag_phys=1 33 ## periode de la physique (en pas) 24 ## avec ou sans physique 25 physic=y 26 ## periode de la physique (en pas) 34 27 iphysiq=10 35 ## frequence (en jours ) de l'ecriture du fichier histphy 36 ecritphy=1 37 ## frequence (en jours ) de l'ecriture du fichier histmth 38 ecrit_mth=1 39 ## Cycle diurne ou non 40 cycle_diurne=y 41 ## Soil Model ou non 42 soil_model=y 43 ## Choix ou non de New oliq 44 new_oliq=y 45 ## Orodr ou non pour l orographie 46 ok_orodr=y 47 ## Orolf ou non pour l orographie 48 ok_orolf=y 49 ## Si = .T. , lecture du fichier limit avec la bonne annee 50 ok_limitvrai=n 51 ## Nombre d'appels des routines de rayonnements ( par jour) 52 nbapp_rad=12 53 ## Flag pour la convection (1 pour LMD, 2 pour Tiedtke, 3 KE, 4 KE vect, 30 pour 'nouvelle physique' et KE) 54 iflag_con=30 55 ## longitude en degres du centre du zoom 28 ## Avec ou sans strato 29 ok_strato=n 30 # Couche eponge dans les couches de pression plus faible que 100 fois la pression de la derniere couche 31 iflag_top_bound=1 32 # Coefficient pour la couche eponge (valeur derniere couche) 33 tau_top_bound=1.e-5 34 ## longitude en degres du centre du zoom 56 35 clon=0. 57 36 ## latitude en degres du centre du zoom -
CONFIG/LMDZORINCA/tags/LMDZORINCA_v2/EXP_NMHC_AER/PARAM/physiq.def
r615 r1557 1 ##- $Id: physiq.def 71 2007-06-21 14:26:03Z acosce $ 2 type_ocean=force 3 VEGET=y 4 OK_journe=n 5 OK_mensuel=y 6 OK_instan=n 1 ## $Id$ 2 # 3 # PARAMETRES ANCIENNEMENT DANS gcm.def 4 ## Cycle diurne ou non 5 cycle_diurne=y 6 ## Soil Model ou non 7 soil_model=y 8 ## Choix ou non de New oliq 9 new_oliq=y 10 ## Activation ou non de la parametrisation de Hines pour la strato 11 ok_hines=n 12 ## Orodr ou non pour l orographie 13 ok_orodr=y 14 ## Orolf ou non pour l orographie 15 ok_orolf=y 16 ## Si = .T. , lecture du fichier limit avec la bonne annee 17 ok_limitvrai=n 18 ## Nombre d'appels des routines de rayonnements ( par jour) 19 nbapp_rad=12 20 ## Flag pour la convection : 1 pour LMD, 2 pour Tiedtke, 3 KE(nvlle version JYG), 30 KE(version IPCC AR4), 4 KE vect 21 iflag_con=30 22 ## Facteur multiplication des precip convectives dans KE 23 cvl_corr=1.0 24 ## Facteur additif pour l'albedo 25 # variable modife avec lmdz.card 26 pmagic=999.9 27 # 28 # 29 # Parametres fichiers de sortie 30 # 31 # Noms des fichiers 32 phys_out_filenames= histmth histday histhf histhf3h histhf3hm histstn 33 # Sortir ou non les fichiers 34 phys_out_filekeys= y y y y y n 35 # Niveaux de sorties 36 phys_out_filelevels= 5 5 5 5 5 5 37 ### Type de fichier : global (n) ou stations (y) 38 phys_out_filestations = n n n n n y 39 ### Frequences des sorties 40 phys_out_filetimesteps = 1.mth, 1.day, 0.25day, 0.125day, 0.125day, 1800.s 41 42 # more variables for level 5 : vitw and pres 43 # Vertical wind 44 flag_vitw = 2, 3, 5, 5, 1 45 name_vitw = vitw 46 # Air pressure 47 flag_pres = 2, 3, 5, 5, 1 48 name_pres = pres 49 # 50 ### parametres pour hist*NMC.nc 51 #lev_histdayNMC: nombre de niveaux sur la verticale dans le fichier 52 # histdayNMC: 8 ou 17 53 lev_histdayNMC=8 54 ### - ok_histNMC = y/n, y/n, y/n pour avoir les sorties NMC mensuelles, journalieres et haute frequence 55 ok_histNMC = y, n, n 56 57 ### freqin_isccp = frequence input en secondes du simulateur ISCCP 58 freq_ISCCP=10800. 59 ### freqout_isccp = frequence output en jours du simulateur ISCCP 60 ecrit_ISCCP=_ecrit-ISCCP_ 61 ### niveau du diagnostique de conservation d energie 7 62 if_ebil=0 8 63 # 9 64 # parametres KE 10 65 # 66 ### epmax = Efficacite precipitation maximale 11 67 epmax = .99 68 ### ok_adj_ema = ?? pas utilise 12 69 ok_adj_ema = n 70 ### iflag_clw Flag calcul eau liquide 71 # - iflag_clw=0 : qcond_incld(i,l) = em_qcondc(l) 72 # - iflag_clw=1 : qcond_incld(i,l) = em_qcond(l) 73 # - iflag_clw=2 : eau liquide diagnostique en fonction de la Precip 13 74 iflag_clw = 1 14 75 # 15 76 # parametres nuages 16 77 # 17 cld_lc_lsc = 0.00026 18 cld_lc_con = 0.00026 78 ### cld_lc_lsc contenu en eau liquide des nuages large-scale (fisrtilp) 79 cld_lc_lsc = 2.6e-4 80 ### cld_lc_con contenu en eau liquide des nuages convectifs (fisrtilp) 81 cld_lc_con = 2.6e-4 82 ### cld_tau_lsc cte de temps utilisee pour eliminer l eau large-scale (fisrtilp) 19 83 cld_tau_lsc = 3600. 84 ### cld_tau_con cte de temps utilisee pour eliminer l eau convective (fisrtilp) 20 85 cld_tau_con = 3600. 86 ### ffallv_lsc cte utilisee dans calcul vitesse de chute cristaux de glace large-scale (fisrtilp) 21 87 ffallv_lsc = 1. 88 ### ffallv_lsc cte utilisee dans calcul vitesse de chute cristaux de glace convectifs (fisrtilp) 22 89 ffallv_con = 1. 23 coef_eva = 0.00002 90 ### coef_eva coef evaporation precips eau/glace (fisrtilp/fisrtilp_tr?/conlmd?) 91 coef_eva = 2.e-5 92 ### reevap_ice reevaporation de toute la precip dans la couche du dessous pour la glace (fisrtilp) 24 93 reevap_ice = y 94 ### iflag_cldcon flag pour calculer ratqsc=F(ratqsbas,fact_cldcon,q_seri) (physiq) 95 # - iflag_cldcon<=-1 diag. rain_Tiedtke 96 # - iflag_cldcon=1, ratqsc=ratqsbas+fact_cldcon*(q_seri(1)-q_seri(k))/q_seri(k) 97 # - iflag_cldcon=1/2, ratqs=max(ratqs,ratqsc) 98 # - iflag_cldcon=3, ratqs=ratqss 25 99 iflag_cldcon = 3 100 ### iflag_pdf : flag calcul distribution sous-maille de l eau et des nuages 101 # - iflag_pdf=0, version ratqs, 102 # - iflag_pdf=1, calcul eau condensee, fraction nuageuse, eau nuageuse a partir 103 # - des PDFS de Sandrine Bony 26 104 iflag_pdf = 1 105 ### fact_cldcon constante calcul ratqsc (voir iflag_cldcon) et proprietes nuages convectifs, clwcon0 (physiq.F) 27 106 fact_cldcon = 1. 28 # facttemps = 1.e-4107 ### facttemps= facteur de relaxation de ratqs (iflag_cldcon=1/2) et rnebcon (iflag_cldcon=3) 29 108 facttemps = 0.0001 109 ## ok_newmicro =y appel newmicro , =n appel nuage (calcul epaisseur optique et emmissivite des nuages) 30 110 ok_newmicro = y 111 ### iflag_ratqs=0 correspond a la version IPCC AR4 112 iflag_ratqs=0 113 ### ratqsbas ratqs en bas si iflag_cldcon=1 31 114 ratqsbas = 0.005 115 ### ratqshaut ratqs en haut pour ratqss "stables" 32 116 ratqshaut = 0.33 117 ### rad_froid rayon cristaux des nuages de glace "froids" 33 118 rad_froid = 35 119 ### rad_chau1 rayon goutelettes d eau chauds", en haut: k=4-klev 34 120 rad_chau1=12 121 ### rad_chau2 rayon goutelettes d eau chauds", en bas: k=1-3 35 122 rad_chau2=11 36 #ksta_ter=1.e-7 37 ksta_ter=0.0000001 38 # 39 # parametres outputs 40 # 41 #niveau de sortie "hf" lev_histhf avec 42 # - lev_histhf=3 => defaut 43 # - lev_histhf=4 => histhf3d.nc champs 3d niveaux modele 44 lev_histhf=3 45 #niveau de sortie "day" lev_histday 46 # - lev_histday=2 => defaut 47 # - lev_histday=3 => + champs 3D => F. Lott 48 # - lev_histday=4 => + champs sous-surfaces 49 lev_histday=2 50 #niveau de sortie "mth" lev_histmth avec 51 # - lev_histmth=2 => defaut 52 # - lev_histmth=3 => albedo, rugosite sous-surfaces 53 # - lev_histmth=4 => champs tendances 3d 54 lev_histmth=4 55 # 56 # parametres climatique 57 # 123 # 124 # Coefficient et parametres sur les drags 125 # 126 f_cdrag_ter=0.8 127 f_cdrag_stable=1. 128 f_cdrag_oce=0.8 129 f_rugoro=0. 130 ### ksta_ter coef.diffusion minimale sur terre/sic/lic 131 ksta_ter=1.e-7 132 ### cdmmax = cdrag maximum pour le moment 133 cdmmax = 2.5E-3 134 ### cdhmax = cdrag maximum pour l energie 135 cdhmax = 2.0E-3 136 # 137 # Parametres "orbitaux/ ere geologique" 138 # 139 ### R_ecc = Excentricite 58 140 R_ecc = 0.016715 141 ### R_peri = Equinoxe 59 142 R_peri = 102.7 143 ### R_incl = Inclinaison 60 144 R_incl = 23.441 145 ### solaire = Constante solaire 61 146 solaire = 1365. 147 # 148 # Taux gaz a effet de serre 149 # 150 ### co2_ppm = taux CO2 en ppm 62 151 co2_ppm = 348. 152 ### CH4_ppb = taux CH4 en ppb 63 153 CH4_ppb = 1650. 154 ### N2O_ppb = taux N2O en ppb 64 155 N2O_ppb = 306. 156 ### CFC11_ppt = taux CFC11 en ppt 65 157 CFC11_ppt = 280. 66 CFC12_ppt = 484. 67 # 68 # parametres simulateur ISCCP 69 # 158 ### CFC12_ppt = taux CFC12 en ppt 159 CFC12_ppt = 484 160 # 161 # Parametres effets directs/indirects des "aerosols" 162 # 163 ### ok_ade=y/n flag Aerosol direct effect 164 ok_ade=n 165 ### ok_aie=y/n flag Aerosol indirect effect 166 ok_aie=n 167 ### aer_type = Aerosol variation type : actuel / preind / scenario / annuel 168 # variable modife avec lmdz.card 169 aer_type=xxx 170 ### type of coupled aerosol =1 (default) =2 => bc only =3 => pom only =4 => seasalt only =5 => dust only =6 => all aerosol 171 flag_aerosol=1 172 ### bl95_b0 = Parameter in CDNC-maer link (Boucher&Lohmann 1995) 173 bl95_b0=2 174 ### bl95_b1 = Parameter in CDNC-maer link (Boucher&Lohmann 1995) 175 bl95_b1=0.2 176 # 177 # Parametre de lecture de l'ozone 178 # 179 # Allowed values are 0, 1 and 2 180 # 0: do not read an ozone climatology 181 # 1: read a single ozone climatology that will be used day and night 182 # 2: read two ozone climatologies, the average day and night climatology and the daylight climatology 183 read_climoz=0 184 # 185 # Parametres simulateur COSP (CFMIP Observational Simulator Package) 186 # 187 ### ok_cosp=y/n flag simulateur COSP 188 ok_cosp=n 189 ### freq_COSP = frequence d'appel de COSP en secondes 190 freq_COSP=10800. 191 ### ok_mensuelCOSP=y/n sortir fichier mensuel COSP histmthCOSP.nc, =n pas de fichier histmthCOSP.nc 192 ok_mensuelCOSP=y 193 ### ok_journeCOSP=y/n sortir fichier journalier histdayCOSP.nc, =n pas de fichier histdayCOSP.nc 194 ok_journeCOSP=y 195 ### ok_hfCOSP=y/n, ecrire sorties haute frequence histhfCOSP.nc, =n pas de fichier histhfCOSP.nc 196 ok_hfCOSP=n 197 # 198 # Parametres simulateur ISCCP 199 # 200 ### ok_isccp=y/n flag simulateur ISCCP 201 ok_isccp=n 202 ### top_height = flag choix calcul nuages par le simulateur en utilisant 203 # - les donnees IR et/ou VIS et l algorithme ISCCP-D1 204 # - top_height = 1 -> algo IR-VIS 205 # - top_height = 2 -> identique a 1, mais "ptop(ibox)=pfull(ilev)" 206 # - top_height = 3 -> algo IR 70 207 top_height = 3 71 #overlap = 1, 2 ou 3 208 ### overlap = Hypothese de Recouvrement (HR) utilisee pour le simulateur ISCCP 209 # - overlap=1 Max overlap 210 # - overlap=2 Random overlap 211 # - overlap=3 Max/Random overlap 72 212 overlap = 3 73 #cdmmax74 #cdmmax = 2.5E-375 cdmmax = 0.002576 #cdhmax77 #cdhmax = 2.0E-378 cdhmax = 0.00279 #autres flags80 iflag_pbl = 181 iflag_thermals = 082 iflag_ratqs=083 iflag_clos=084 #85 # parametre chimie/aerosols86 #87 213 config_inca=aero 88 214 aerosol_couple=n 89 flag_aerosol=190 new_aod=.true.91 ok_ade=n92 ok_aie=n93 -
CONFIG/LMDZORINCA/tags/LMDZORINCA_v2/EXP_NMHC_AER/PARAM/run.def
r1064 r1557 4 4 INCLUDEDEF=orchidee.def 5 5 INCLUDEDEF=guide.def 6 ## activation du calcul d equilibrage de charge7 adjust=_adjust_8 6 ## Type de calendrier utilise 9 7 ## valeur possible: earth_360d (defaut), earth_365d, earth_366d … … 13 11 ## Annee de l'etat initial ( avec 4 chiffres ) 14 12 anneeref=_anneeref_ 15 ## raz_date16 raz_date=_raz_date_17 13 ## Nombre de jours d'integration 18 14 nday=_nday_ 15 ## Remise a zero de la date initiale 16 raz_date=_raz_date_ 19 17 ## periode de sortie des variables de controle (en pas) 20 iconser= 18 iconser=480 21 19 ## periode d'ecriture du fichier histoire (en jour) 22 iecri=10 23 ## periode de stockage fichier histmoy (en jour) 24 periodav=1. 25 ## unite de sortie des impressions 26 lunout=6 20 iecri=1 21 ## flag de sortie dynzon 22 ok_dynzon=n 23 ## periode de stockage fichier dynzon (en jour) 24 periodav=_periodav_ 25 ## activation du calcul d equilibrage de charge 26 adjust=_adjust_ 27 ## activation du filtre fft 28 use_filtre_fft=y 29 ## niveau d impression de controle 30 prt_level=0 31 ### 32 ### Informations sur la configuration utilisee 33 ### 34 ### type_ocean = force / slab /couple 35 type_ocean=force 36 ### VEGET= y si ORCHIDEE, =n si bucket 37 VEGET=y 38 ### Parameters read only by ce0l : 39 ### create file grilles_gcm.nc 40 grilles_gcm_netcdf=y 41 -
CONFIG/LMDZORINCA/tags/LMDZORINCA_v2/EXP_NMHC_AER/config.card
r1064 r1557 35 35 #-- Total Number of Processors (minimum is 2 for a coupled configuration) 36 36 #JobNumProcTot=2 37 JobNumProcTot= 437 JobNumProcTot=32 38 38 #============================ 39 39 #-- Run Options : here for oasis coupling
Note: See TracChangeset
for help on using the changeset viewer.