tm5-config-run.rc.tmpl 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573
  1. !
  2. ! RCFILE template to set up TM5-MP for an ECEARTH 3 run.
  3. !
  4. ! The following env variables should be exported by the run script :
  5. !
  6. ! ${cpl_tm_guess}, ${tm5_co2}, ${ifs_res_hor}, ${exp_name} (because used in run_dir!!)
  7. !
  8. ! WARNING: any dependency of one of these keys should also be exported by the run script.
  9. !
  10. !=====================================================================!
  11. ! Run main specifications
  12. !=====================================================================!
  13. ! [id] basename for executable & runtime rcfile
  14. my.basename : tm5v4
  15. ! timing
  16. timerange.start : 9999-99-99 99:99:99
  17. timerange.end : 9999-99-99 99:99:99
  18. jobstep.length : inf
  19. ! autorun
  20. submit.auto : False
  21. ! main directories
  22. my.project.dir : [[[PLT:ACTIVE:ECEARTH_SRC_DIR]]]/tm5mp
  23. my.run.dir : [[[PLT:ACTIVE:RUN_DIR]]]
  24. my.data.dir : [[[PLT:ACTIVE:INI_DATA_DIR]]]/tm5
  25. ifs.data.dir : [[[PLT:ACTIVE:INI_DATA_DIR]]]/ifs
  26. ! dir of standard input files (read in model init)
  27. inputdir : ${my.data.dir}/TM5_INPUT
  28. co2only : ${tm5_co2}
  29. !=====================================================================!
  30. ! Environment (compiler, libraries, job manager, //, ...)
  31. !=====================================================================!
  32. par.mpi : T
  33. par.ntask : 1
  34. par.nx : ${tm5_numproc_x}
  35. par.ny : ${tm5_numproc_y}
  36. !=====================================================================!
  37. ! Grids & Levels
  38. !=====================================================================!
  39. #if "${tm5_exch_nlevs}" == '91'
  40. my.levs : tropo34
  41. #elif "${tm5_exch_nlevs}" == '62'
  42. my.levs : tropo31
  43. #else
  44. my.levs : all
  45. #endif
  46. ! regions name
  47. my.region1 : glb300x200
  48. ! grid names for meteo input (allows on the flight regridding):
  49. my.region1m : glb100x100
  50. !=====================================================================!
  51. ! Model tuning
  52. !=====================================================================!
  53. ! model timestep
  54. time.ntimestep : [[[MOD:TM5:TIME_STEP_SEC]]]
  55. time.ndyn_max : 3600
  56. ! processes
  57. proces.advection.reduced : T
  58. proces.wet_removal.cp_scale : 0.5
  59. ! read diffusion coefficients (instead of calculate) (also: write if doesnot exist)
  60. diffusion.write : F
  61. diffusion.dir : ${my.run.dir}/output
  62. !=====================================================================!
  63. ! Restart files
  64. !=====================================================================!
  65. ! initial fields
  66. istart : 9999
  67. ! Directory (case of istart=33, 32)
  68. restart.read.dir : ${my.run.dir}
  69. ! File (case of istart= 31, 5)
  70. start.31.glb100x100 : ${my.run.dir}/tm5_save.hdf
  71. start.31.glb300x200 : ${my.run.dir}/tm5_save.hdf
  72. start.31.glb600x400 : ${my.run.dir}/tm5_save.hdf
  73. start.5.glb300x200 : ${my.run.dir}/tm5_mmix.hdf
  74. start.5.glb600x400 : ${my.run.dir}/tm5_mmix.hdf
  75. !
  76. restart.write : T
  77. ! extra restart files
  78. restart.write.extra : F
  79. restart.write.extra.hour : 00
  80. restart.write.extra.dhour : 24
  81. ! where to write restart files:
  82. restart.write.dir : ${restart.read.dir}
  83. !=====================================================================!
  84. ! METEO SETTINGS
  85. !=====================================================================!
  86. my.meteo.class : ifs${tm5_exch_nlevs}
  87. my.meteo.resol : glb100x100
  88. my.meteo.format : tm5-hdf
  89. time.fc : F
  90. time.fc.day0 :
  91. my.tmm.setup.apply : T
  92. #include ${my.project.dir}/rc/meteo-tm5-ecearth3.rc
  93. !=====================================================================!
  94. ! Coupling to ecearth
  95. !=====================================================================!
  96. ! list of variables get from ifs (comma seperated):
  97. #if "${co2only}" == '1'
  98. prism.get : LNSP,VOR,DIV,OROG,SPRES,TMP,HUM,UMF,UDR,DMF,DDR,LSMSK,SR,WSPD,SLHF,SSHF,EWSS,NSSS
  99. #else
  100. prism.get : LNSP,VOR,DIV,OROG,SPRES,TMP,HUM,CLW,CIW,CC,CCO,CCU,UMF,UDR,DMF,DDR,LSMSK,ALB,SR,CI,SST,WSPD,SRC,D2M,T2M,SLHF,SSHF,EWSS,NSSS,CP,LSP,SSR,SD,SWVL1,TV01,TV02,TV03,TV04,TV05,TV06,TV07,TV09,TV10,TV11,TV13,TV16,TV17,TV18,TV19,CVL,CVH
  101. #endif
  102. ! * == 3D
  103. !SPINF,LNSP,VOR*,DIV*,OROG,SPRES,TMP*,HUM*,CLW*,CIW*,CC*,CCO*,CCU*,UMF*,UDR*,DMF*,DDR*,LSMSK,ALB,SR,CI,SST,WSPD,SRC,D2M,T2M,SLHF,SSHF,EWSS,NSSS,CP,LSP,SSR,SD,SWVL1,TV01,TV02,TV03,TV04,TV05,TV06,TV07,TV09,TV10,TV11,TV13,TV16,TV17,TV18,TV19,CVL,CVH
  104. ! list of variables put to ifs (comma seperated):
  105. prism.put : ${tm5_to_ifs}
  106. ! number of levels for exchange with IFS:
  107. ifs.cpl.nlev : ${tm5_exch_nlevs}
  108. ! reduced number of levels for exchange with IFS,
  109. ! applied to aerosol fields
  110. ifs.cpl.nlev.cutoff : ${tm5_exch_nlevs_cutoff}
  111. ! ifs spectral resolution:
  112. ifs.shresol : ${ifs_res_hor}
  113. ! frequency of coupling with IFS, LPJG, and PISCES [hrs]:
  114. cpl.ifs.period : [[[MOD:OASIS:CPL_FREQ_ATM_CHE_HRS]]]
  115. cpl.lpj.period : [[[MOD:OASIS:CPL_FREQ_ATM_LPJG_HRS]]]
  116. cpl.pis.period : [[[MOD:OASIS:CPL_FREQ_ATM_LPJG_HRS]]]
  117. ! couple TM5 to LPJ-GUESS
  118. coupled_to_lpjguess : ${cpl_tm_guess}
  119. ! couple TM5 to PISCES
  120. coupled_to_pisces : ${cpl_tm_pisces}
  121. !=====================================================================!
  122. ! Extra resources
  123. !=====================================================================!
  124. #if "${my.region1}" == "glb100x100"
  125. #include ${my.project.dir}/rc/regions-glb100x100-chem.rc
  126. #else
  127. #include ${my.project.dir}/rc/regions-${my.region1}.rc
  128. #endif
  129. #include ${my.project.dir}/rc/expert-ecearth3-run.rc
  130. !=====================================================================!
  131. ! Input for chemistry - see <sources>/tm5mp/rc/chem-input-default.rc.tmpl for details
  132. !=====================================================================!
  133. !
  134. ! CMIP6 Scenario for future runs (could be SSP1-1.9, SSP1-2.6,
  135. ! SSP1-2.6-Ext, SSP2-4.5, SSP3-7.0, SSP5-8.5, SSP5-8.5-Ext),
  136. ! but:
  137. ! Only SSP3-7.0 and SSP3-LowNTCF (see below) are implemented for AerChem.
  138. ! Only SSP3-7.0 and SSP5-8.5 are implemented for C-cycle.
  139. !
  140. ! SSP3-LowNTCF is triggered with the flags below, effective only
  141. ! when using SSP3-7.0 scenario.
  142. !
  143. input.CMIP6.SSP : [[[MOD:IFS:CMIP6_SCENARIO]]]
  144. ! --- Options to use SSP370-lowNTCF for selected species or groups of species
  145. ! "Overall" flag. Default to False
  146. input.CMIP6.SSP370_LowNTCF.ntcf : F
  147. ! -- "Aerosols". Default to Overal
  148. !input.CMIP6.SSP370_LowNTCF.aer : F
  149. ! - Species that default to Aerosols
  150. !input.CMIP6.SSP370_LowNTCF.bc : F
  151. !input.CMIP6.SSP370_LowNTCF.oc : F
  152. !input.CMIP6.SSP370_LowNTCF.sox : F
  153. !input.CMIP6.SSP370_LowNTCF.nh3 : F
  154. ! -- "Ozone" precursors flag. Default to Overal
  155. !input.CMIP6.SSP370_LowNTCF.o3 : F
  156. ! - Species that default to Ozone
  157. !input.CMIP6.SSP370_LowNTCF.nox : F
  158. !input.CMIP6.SSP370_LowNTCF.co : F
  159. !input.CMIP6.SSP370_LowNTCF.nmvoc : F
  160. ! For CH4, one also needs to set LSSP370_LOWCH4 to True in the IFS namelist.
  161. ! Otherwise H2O production from CH4 oxidation in IFS will be based on SSP370.
  162. ! Default is False.
  163. input.CMIP6.SSP370_LowNTCF.ch4 : F
  164. !------------------------
  165. ! Photolysis
  166. !------------------------
  167. input.photo : ${inputdir}/photolysis
  168. optics.lookuptable : ${inputdir}/photolysis/lookup_table.nc
  169. optics.refractive_indices: ${inputdir}/photolysis/refractive_indices_hdfstyle.nc
  170. !------------------------
  171. ! STRATOSPHERIC BOUNDARY : O3, O3S and CH4 are relaxed to climatology at those layers
  172. !------------------------
  173. ! ** Use CMIP6 O3..
  174. input.conc.o3.cmip6 : T
  175. ! .. specifically its pre-industrial climatology
  176. input.conc.o3.cmip6.piclim : F
  177. ! with data in
  178. input.conc.o3.cmip6.dir : ${ifs.data.dir}/cmip6-data/
  179. ! Alternative for O3
  180. input.climat.MSR : F
  181. input.climat.o3vmr : ${inputdir}/boundary/O3_top/MSR_O3_VMR_HDF/
  182. input.climat.use_o3du : F
  183. input.climat.o3du : ${inputdir}/boundary/O3_top/MSR_O3_VMR_HDF/
  184. ! Option to fix CMIP6 or MSR O3 mixing ratios to fixed year:
  185. ! Note that, for CMIP6, this option applied to the year 1850,
  186. ! is not the same as selecting the pre-industrial climatology
  187. ! with input.conc.o3.cmip6.piclim=T, which has precedence.
  188. #if "${ifs_cmip_fixyear}" != "0"
  189. input.o3.fixyear : T
  190. input.o3.year : ${ifs_cmip_fixyear}
  191. #else
  192. input.o3.fixyear : F
  193. input.o3.year :
  194. #endif
  195. ! ** CH4, use HALOE climatology...
  196. input.climat.HALOE : T
  197. input.climat.ch4vmr : ${inputdir}/boundary/CH4_top/
  198. ! ... scaled based on the CMIP6 time series of the global and annual mean
  199. ! Option to fix CMIP6 methane boundary conditions and emissions to fixed year
  200. #if "${tm5_emiss_fixyear}" != "0"
  201. input.ch4.fixyear : T
  202. input.ch4.year : ${tm5_emiss_fixyear}
  203. #else
  204. input.ch4.fixyear : F
  205. input.ch4.year :
  206. #endif
  207. ! ** For HNO3 and CO scaled from O3 according to ODIN:
  208. input.climat.ODIN : T
  209. input.climat.covmr : ${inputdir}/boundary/ODIN/
  210. !------------------------
  211. ! Set emissions base year (default to simulation year if commented)
  212. !------------------------
  213. #if "${tm5_emiss_fixyear}" != "0"
  214. input.emis.year : ${tm5_emiss_fixyear}
  215. #endif
  216. !--------------------------------------------------------------------
  217. ! Additional switches to fix the emissions of anthropogenic and biomass
  218. ! burning emissions to a specific year (as required in AerChemMIP).
  219. !
  220. ! The year of emissions can be controlled for the whole group of NTCFs, for
  221. ! the sub-groups of aerosol or ozone precursors, and/or for the individual
  222. ! species.
  223. !
  224. ! Note that settings for individual species or else the subgroup to which they
  225. ! belong take precedence. If these are commented, input.emis.year.ntcf or else
  226. ! input.emis.year is used. If these are also commented, the actual year of
  227. ! simulation is used.
  228. !
  229. ! --- "All" Near-Term Climate Forcers (NTCFs), excl. CH4.
  230. ! --- Default to "input.emis.year"
  231. !input.emis.year.ntcf :
  232. ! -- "Aerosols" precursors (BC, OC, NH3, SOx). Default to "All"
  233. !input.emis.year.aer :
  234. ! - Species that default to "Aerosols"
  235. !input.emis.year.bc :
  236. !input.emis.year.oc :
  237. !input.emis.year.sox :
  238. !input.emis.year.nh3 :
  239. ! -- "Ozone" precursors (NOx, CO, NMVOCs incl. isoprene and mononterpenes). Default to "All"
  240. !input.emis.year.o3 :
  241. ! - Species that default to "Ozone". (Note that in AerChemMIP, the year for CO should be that for NMVOCs.)
  242. !input.emis.year.nox :
  243. !input.emis.year.co :
  244. !input.emis.year.nmvoc :
  245. ! ----------------------------------------
  246. ! ! Anthropogenic emis (choose ONE: CMIP6 (1850-2100) or AR5(1850-2100) or EDGAR4(1970-2005/8) )
  247. ! ----------------------------------------
  248. #if ( "${co2only}" == '1' ) and ( "${tm5_emiss_fixyear}" == "-1" )
  249. use_cmip6 : F
  250. #else
  251. use_cmip6 : T
  252. #endif
  253. input.emis.dir.CMIP6 : ${my.data.dir}/CMIP6
  254. use_ar5 : F
  255. input.emis.dir.AR5 : ${my.data.dir}/AR5
  256. ! AR5 scenario: choose b/w RCP26 (1), RCP45 (2), RCP60 (3), RCP85 (4) and 'hist' (0) for historical
  257. input.emis.AR5.RCP : 0
  258. use_edgar4 : F
  259. input.emis.dir.ED41 : ${my.data.dir}/EDGAR4
  260. ! ----------------------------------------
  261. ! Biomass burning (choose one: CMIP6BMB (1850-2100), GFED3 (1997-2010), RETRO_FIRES(1960-2000) or AR5_FIRES)
  262. ! ----------------------------------------
  263. use_cmip6_fires : T
  264. use_ar5_fires : F
  265. use_retro_fires : F
  266. use_gfed3 : F
  267. input.emis.dir.gfed : ${my.data.dir}/GFED3
  268. input.emis.dir.retro : ${my.data.dir}/RETRO
  269. ! apply daily cycle to BMB in the tropics
  270. ! (based on isoprene and not applied to BC/POM)
  271. input.emis.bb.dailycycle : F
  272. ! ----------------------------------------
  273. ! Natural emissions
  274. ! ----------------------------------------
  275. use_macc : T
  276. input.emis.dir.MACC : ${my.data.dir}/MACC
  277. use_megan : T
  278. input.emis.dir.MEGAN : ${my.data.dir}/MEGAN
  279. use_lpj : T
  280. use_hymn : T
  281. input.emis.dir.natch4 : ${inputdir}/natural_emissions/reactive_gases/CH4/HYMN
  282. input.emis.dir.rn222 : ${inputdir}/natural_emissions/tracer
  283. input.emis.dir.dms : ${inputdir}/natural_emissions/reactive_gases/DMS
  284. ! Set base year for natural emissions that don't cover the full period
  285. ! 1850-2100. Use 2000 in climate integrations (CMIP6). Used for CH4
  286. ! emissions from LPJ, as well as for MACC & MEGAN.
  287. input.natemis.year : 2000
  288. ! ----------------------------------------
  289. ! Aerosols
  290. ! ----------------------------------------
  291. input.emis.dust : ONLINE
  292. input.emis.dir.dust : ${inputdir}/aerosols/Dust/${input.emis.dust}
  293. input.emis.dir.aerocom : ${inputdir}/aerosols/SOA
  294. ! ** particle formation scheme
  295. ! 1 Vehkamaki et al. 2002 (so4)
  296. ! 2 Kulmala et al. 1996 (so4)
  297. ! 3 Paasonen et al. 2010 (organic+so4) + Vehkamaki et al.
  298. ! 4 Riccobono et al. 2014 + Vehkamaki et al.
  299. input.nucleation.scheme : 4
  300. ! ** SOA scheme
  301. !0 POM AeroCom (aitkenmodes)
  302. !1 POM distribution according to volatility (5 modes) (not implemented)
  303. !2 monoterpene+isoprene oxidation + condensation
  304. input.soa.scheme : 2
  305. !Use also isoprene yields for ELVOC and SVOC production
  306. !Default value True
  307. input.soa.isoprene_on : T
  308. !Size of formed particles in KK parameterisation in nm (default: 5.0)
  309. input.KK.d_form : 5.0
  310. ! ----------------------------------------
  311. ! NOx extra sources
  312. ! ----------------------------------------
  313. input.onlinenox.dir : ${inputdir}/input/glb1x1
  314. ! ----------------------------------------
  315. ! Nudging CH4 [see emission_CH4.F90]
  316. ! ----------------------------------------
  317. ! If input.conc.ch4.cmip6 is set to T:
  318. ! - CMIP6 zonal mean surface mixing ratios used to nudge the mixing ratio in
  319. ! the lower troposphere after the emissions have been added. Both emissions
  320. ! and zonal means are read for model year or for input.ch4.year if
  321. ! input.ch4.fixyear==T. Cannot use input.emis.year for CH4 emissions!!
  322. ! - HALOE climatology of stratospheric CH4 mixing ratios scaled
  323. ! based on CMIP6 time series of global annual mean mixing ratio at surface
  324. ! (input.climat.HALOE forced to T --see above--)
  325. input.conc.ch4.cmip6 : T
  326. input.conc.ch4.cmip6.dir.year : ${ifs.data.dir}/cmip6-data/
  327. input.conc.ch4.cmip6.dir.month : ${ifs.data.dir}/cmip6-data/
  328. ! alternative
  329. input.emis.ch4.surf : ${inputdir}/boundary/CH4_surf/
  330. input.emis.ch4.single : F
  331. input.emis.ch4.fixed_ppb : 1760.0
  332. input.emis.ch4.fix3d : T
  333. ! ----------------------------------------
  334. ! CO2 mixing ratio used in pH calculation for aqueous chemistry
  335. ! ----------------------------------------
  336. ! If input.conc.co2.cmip6 is set to T (RECOMMENDED),
  337. ! global annual mean mixing ratios from CMIP6 are used;
  338. ! otherwise, it is fixed to a value for the year 2000.
  339. input.conc.co2.cmip6 : T
  340. input.conc.co2.cmip6.dir : ${ifs.data.dir}/cmip6-data/
  341. ! Option to fix CMIP6 CO2 mixing ratio to fixed year:
  342. #if "${ifs_cmip_fixyear}" != "0"
  343. input.co2.fixyear : T
  344. input.co2.year : ${ifs_cmip_fixyear}
  345. #else
  346. input.co2.fixyear : F
  347. input.co2.year :
  348. #endif
  349. ! Option to prescribe CO2 for the 1pctCO2 or abrupt-4xCO2 DECK simulation
  350. ! Only one can be set to True and when this is the case,
  351. ! the values of input.co2.fixyear and input.co2.year
  352. ! as specified above are not used.
  353. !
  354. ! Option to prescribe CO2 as in 1pctCO2:
  355. #if "${ifs_1PCTCO2}" == "TRUE"
  356. input.co2.1pct : T
  357. #else
  358. input.co2.1pct : F
  359. #endif
  360. !
  361. ! Option to prescribe CO2 as in abrupt-4xCO2:
  362. #if "${ifs_A4xCO2}" == "TRUE"
  363. input.co2.abrupt-4x : T
  364. #else
  365. input.co2.abrupt-4x : F
  366. #endif
  367. !=====================================================================!
  368. ! Log & output dir
  369. !=====================================================================!
  370. okdebug : F
  371. go.print.all : F
  372. go.print.prompt.pe : F
  373. go.print.trace : F
  374. go.print.file : T
  375. go.print.file.base : ctm.tm5.log
  376. output.dir : ${my.run.dir}
  377. output.overwrite : T
  378. ! alternative output dir
  379. output.dir.base :
  380. output.dir.extensions :
  381. !=====================================================================!
  382. ! Optional output from 'BASE' code
  383. !=====================================================================!
  384. ! mean mixing ratio
  385. output.mmix : F
  386. ! budget fluxes through boundaries
  387. apply.budget.global.flux : F
  388. budget.global.flux.lon_in : -12
  389. budget.global.flux.lon_out : 36
  390. budget.global.flux.lat_in : 34
  391. budget.global.flux.lat_out : 62
  392. ! Non-Horizontally-Aggregated-Budgets
  393. write.column.budgets : T
  394. ! profiling (subdir of output.dir)
  395. timing.output : F
  396. timing.output.subdir : tm5_profile
  397. !output.after.step :
  398. !=====================================================================!
  399. ! Optional output from 'PROJ/USER_OUTPUT' code
  400. !=====================================================================!
  401. ! Grids setting (subdir of output.dir)
  402. settings.output : F
  403. settings.output.subdir :
  404. ! Station output
  405. output.station : F
  406. inputdir.station :
  407. input.station.filename : station.emep.list
  408. input.station.filename2 :
  409. input.station.fileformat : 1
  410. station.speclist : SO2 NOy CH4 OH
  411. output.station.filename : tm5_emep.hdf
  412. ! Flight tracks
  413. output.flight : F
  414. ! All fields on root processor
  415. output.mix : F
  416. output.mix.dhour : 3
  417. ! Aerocom output (cannot do -fpe0 with Aerocom output)
  418. output.aerocom : F
  419. ! Set output frequency to "hourly", "daily" or "monthly"
  420. output.aerocom.freq : monthly
  421. output.aerocom.exper : ${exp_name}
  422. output.aerocom.dhour : 1
  423. output.aerocom.stations : F
  424. pm.sizelimits : 2 5 10
  425. ! General output
  426. output.general : F
  427. output.general.freq : monthly
  428. output.general.exper : ${exp_name}
  429. output.general.dhour : 1
  430. ! all_chemistry: all or subset of gasphase compounds
  431. output.general.all_chemistry : F
  432. output.general.2d : T
  433. output.general.3d : T
  434. ! AerChemMIP and CRESCENDO output
  435. output.aerchemmip: T
  436. output.aerchemmip.1h: T
  437. ! ** NOT IMPLEMENTED YET **
  438. ! output.aerchemmip.dhour: 1
  439. output.aerchemmip.experiment: SOMETHING
  440. output.aerchemmip.realm: atmosChem
  441. output.aerchemmip.sourcetype: AP3
  442. output.aerchemmip.experimentid: ${exp_name}
  443. output.crescendo: F
  444. ! C4MIP output
  445. output.c4mip: T
  446. output.c4mip.1h: F
  447. output.c4mip.experiment: SOMETHING
  448. output.c4mip.realm: atmos
  449. output.c4mip.sourcetype: AP3
  450. output.c4mip.experimentid: ${exp_name}
  451. ! diagnostic CCN
  452. input.diagnostic.CCN : T
  453. input.supersat : 8
  454. ! supersaturation [%RH]
  455. supersat.values : 0.05 0.1 0.2 0.3 0.5 0.7 1.0 1.4
  456. ! NOAA output
  457. output.noaa : F
  458. ! Time Series
  459. output.pdump : F
  460. output.pdump.dataset.author : John Doe
  461. output.pdump.dataset.institution : My Company, Somewhere
  462. output.pdump.dataset.version : ece3
  463. output.pdump.fname.model : TM5MP
  464. output.pdump.fname.expid : r240
  465. output.pdump.fname.grid.glb300x200 : glb3x2
  466. output.pdump.fname.grid.eur100x100 : eur1x1
  467. output.pdump.griddef.apply : T
  468. output.pdump.tp.apply : F
  469. output.pdump.tp.dhour : 3
  470. output.pdump.vmr.n : 3
  471. output.pdump.vmr.001.apply : T
  472. output.pdump.vmr.001.fname : vmr3
  473. output.pdump.vmr.001.dhour : 3
  474. output.pdump.vmr.001.tracers : O3 CO NO
  475. output.pdump.vmr.002.apply : F
  476. output.pdump.vmr.002.fname : vmr1
  477. output.pdump.vmr.002.dhour : 1
  478. output.pdump.vmr.002.tracers : O3 O3s CO CH2O
  479. output.pdump.vmr.002.subreg : F
  480. output.pdump.vmr.002.minlon : -10.
  481. output.pdump.vmr.002.maxlon : 10.
  482. output.pdump.vmr.002.minlat : 23.
  483. output.pdump.vmr.002.maxlat : 57.
  484. output.pdump.vmr.003.apply : F
  485. output.pdump.vmr.003.fname : vmra
  486. output.pdump.vmr.003.dhour : 3
  487. output.pdump.vmr.003.tracers : SO4 NO3_A BC BCS POM SS1_N SS1_M SS2_N SS2_M SS3_N SS3_M DUST2_N
  488. output.pdump.lt.apply : F
  489. output.pdump.lt.tracers : O3
  490. output.pdump.lt.localtime : 2
  491. output.pdump.lt2.apply : F
  492. output.pdump.lt2.tracers :
  493. output.pdump.lt2.localtime :
  494. output.pdump.depositions.apply : F
  495. output.pdump.depositions.dhour : 3
  496. output.pdump.depositions.tracers : O3 HNO3 NO NO2 H2O2 CH2O PAN CO NH3 NH4 SO2 NOy
  497. output.pdump.depvels.apply : F
  498. output.pdump.depvels.dhour : 3
  499. output.pdump.depvels.tracers : O3 HNO3 NO NO2 H2O2 CH2O PAN CO NH3 NH4 SO2