Changeset 1334 for CONFIG/LMDZOR
- Timestamp:
- 03/11/11 10:07:19 (14 years ago)
- Location:
- CONFIG/LMDZOR/branches/LMDZOR_v4/LMDZOR/COMP
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
CONFIG/LMDZOR/branches/LMDZOR_v4/LMDZOR/COMP/lmdz.card_AMIP
r1222 r1334 51 51 # With AR5 aerosols (including ASSO4M(=SO4), CSSO4M, AIBCM, ASBCM, AIPOMM, ASPOMM, ASSSM, CSSSM, SSSSM, CIDUSTM) 52 52 # With AR5 ozone(tropo + strato from LMDZOR-INCA-REPROBUS simulations) 53 ListNonDel= (${R_BC}/ATM/${config_UserChoices_TagName}/IPCC_AR5/HISTORIQUE/SOLARANDVOLCANOES_1610_2008.txt, .),\54 (${R_BC}/ATM/${config_UserChoices_TagName}/IPCC_AR5/HISTORIQUE/CO2_1765_2005.txt, .),\55 (${R_BC}/ATM/${config_UserChoices_TagName}/IPCC_AR5/HISTORIQUE/CH4_1765_2005.txt, .),\56 (${R_BC}/ATM/${config_UserChoices_TagName}/IPCC_AR5/HISTORIQUE/N2O_1765_2005.txt, .),\57 (${R_BC}/ATM/${config_UserChoices_TagName}/IPCC_AR5/HISTORIQUE/CFC11_1765_2005.txt, .),\58 (${R_BC}/ATM/${config_UserChoices_TagName}/IPCC_AR5/HISTORIQUE/CFC12_1765_2005.txt, .),\53 ListNonDel= (${R_BC}/ATM/${config_UserChoices_TagName}/IPCC_AR5/HISTORIQUE/SOLARANDVOLCANOES_1610_2008.txt, SOLARANDVOLCANOES.txt),\ 54 (${R_BC}/ATM/${config_UserChoices_TagName}/IPCC_AR5/HISTORIQUE/CO2_1765_2005.txt, CO2.txt),\ 55 (${R_BC}/ATM/${config_UserChoices_TagName}/IPCC_AR5/HISTORIQUE/CH4_1765_2005.txt, CH4.txt),\ 56 (${R_BC}/ATM/${config_UserChoices_TagName}/IPCC_AR5/HISTORIQUE/N2O_1765_2005.txt, N2O.txt),\ 57 (${R_BC}/ATM/${config_UserChoices_TagName}/IPCC_AR5/HISTORIQUE/CFC11_1765_2005.txt, CFC11.txt),\ 58 (${R_BC}/ATM/${config_UserChoices_TagName}/IPCC_AR5/HISTORIQUE/CFC12_1765_2005.txt, CFC12.txt),\ 59 59 (${R_BC}/ATM/${config_UserChoices_TagName}/${RESOL_ATM}/AR5/HISTORIQUE/aerosols_11YearsClim_1855_v3.nc, aerosols.nat.nc) 60 60 -
CONFIG/LMDZOR/branches/LMDZOR_v4/LMDZOR/COMP/lmdz.driver
r1328 r1334 179 179 180 180 ##-- GHG forcing for the current year if forcing file is availible 181 if [ -f SOLARANDVOLCANOES _1610_2008.txt ] ; then182 IPCC_SOLAR=`grep Annee_${year} SOLARANDVOLCANOES _1610_2008.txt | awk -F= '{print $2}'`181 if [ -f SOLARANDVOLCANOES.txt ] ; then 182 IPCC_SOLAR=`grep Annee_${year} SOLARANDVOLCANOES.txt | awk -F= '{print $2}'` 183 183 LMDZ_sed physiq.def solaire ${IPCC_SOLAR} 184 184 fi 185 if [ -f CO2 _1765_2005.txt ] ; then186 IPCC_CO2=`grep Annee_${year} CO2 _1765_2005.txt | awk -F= '{print $2}'`185 if [ -f CO2.txt ] ; then 186 IPCC_CO2=`grep Annee_${year} CO2.txt | awk -F= '{print $2}'` 187 187 LMDZ_sed physiq.def co2_ppm ${IPCC_CO2} 188 188 fi 189 if [ -f CH4 _1765_2005.txt ] ; then190 IPCC_CH4=`grep Annee_${year} CH4 _1765_2005.txt | awk -F= '{print $2}'`189 if [ -f CH4.txt ] ; then 190 IPCC_CH4=`grep Annee_${year} CH4.txt | awk -F= '{print $2}'` 191 191 LMDZ_sed physiq.def CH4_ppb ${IPCC_CH4} 192 192 fi 193 if [ -f N2O _1765_2005.txt ] ; then194 IPCC_N2O=`grep Annee_${year} N2O _1765_2005.txt | awk -F= '{print $2}'`193 if [ -f N2O.txt ] ; then 194 IPCC_N2O=`grep Annee_${year} N2O.txt | awk -F= '{print $2}'` 195 195 LMDZ_sed physiq.def N2O_ppb ${IPCC_N2O} 196 196 fi 197 if [ -f CFC11 _1765_2005.txt ] ; then198 IPCC_CFC11=`grep Annee_${year} CFC11 _1765_2005.txt | awk -F= '{print $2}'`197 if [ -f CFC11.txt ] ; then 198 IPCC_CFC11=`grep Annee_${year} CFC11.txt | awk -F= '{print $2}'` 199 199 LMDZ_sed physiq.def CFC11_ppt ${IPCC_CFC11} 200 200 fi 201 if [ -f CFC12 _1765_2005.txt ] ; then202 IPCC_CFC12=`grep Annee_${year} CFC12 _1765_2005.txt | awk -F= '{print $2}'`201 if [ -f CFC12.txt ] ; then 202 IPCC_CFC12=`grep Annee_${year} CFC12.txt | awk -F= '{print $2}'` 203 203 LMDZ_sed physiq.def CFC12_ppt ${IPCC_CFC12} 204 204 fi
Note: See TracChangeset
for help on using the changeset viewer.