Hello, I have a question about ELMO file output. I was not able to find information on this issue even after reading Chapter 7 (Model Output Files) or Appendix F (ELMO) of the CMAQ Users Guide. I am using CMAQv5.4 compiled with the set DDM3D_CCTM
flag enabled
Context
I have recently compiled CMAQ and performed a successful 5-day simulation on the 36US3 grid. I can see the output data files (ACONC
, ASENS
, DRYDEP
, etc.) in my output directory; one for each simulated day. However the ELMO files (ELMO and AELMO) are not there… instead I can see two files CTM_AELMO_1
and CTM_ELMO_1
located in the directory in which my job script runs the executable and writes the output logs. I just see a single file each for ELMO and AELMO, unlike the other outputs which have one file for each of the five simulated days. There is data in the CTM_AELMO_1
and CTM_ELMO_1
files, which I am able to read and make plots.
Question: How do I control this ELMO output?
I am curious if there is some setting in which the ELMO files are written out less frequently (e.g., monthly) than the other output, which might explain why the files are sitting in my run directory and not yet moved to the output directory.
I would prefer to have those ELMO files be written to my output directory like those other output files on the same (daily) timescale. Is there an environment variable I need to set in my job script? Or perhaps is there some additional namelist setting I need to set?
Here is the current contents of the ELMO section of my CMAQ_Control_Misc.nml
file:
&elmo_activate
instant = .TRUE.
average = .TRUE.
/
&elmo_inst
Inst_Layer_Top = 1
Inst_Layer_Bot = 1
Inst_Vars_Nml = 'DEFAULT'
! Example for limited output
! Inst_Vars_Nml = 'NO2', 'FORM', 'SO2', 'O3', 'PM25', 'PM10', 'DENS', 'NOX', 'AOD_550'
/
&elmo_avrg
Avrg_Layer_Top = 1
Avrg_Layer_Bot = 1
Avrg_Vars_Nml ='DEFAULT'
! Example for limited output
! Avrg_Vars_Nml = 'NO2', 'FORM', 'SO2', 'O3', 'PM25', 'PM10', 'DENS', 'NOX', 'AOD_550'
/