@Jinseung,
-
In the Ocean file these fields need explicit values, which can be calculated using tools available in our latest model release (see documentation here). Once these fields are populated in the Ocean file with explicit numerical values the internal algorithms in MGEMIS will use those fields to estimate grid scale DMS and Halogen emissions. If you are interested in seeing the exact algorithms I advise you to read Sarwar et al., 2023 section 2.2 and Sarwar et al., 2015 section 2.4 for DMS and Halogen emissions respectively.
-
In the second approach, when you mention “zeroing the mappings,” does this specifically mean setting the scale factor to 0 in the EmissCtrl_cb6r3m_ae7_kmtbr.nml file, or does it refer to a different type of modification?
Yes, exactly setting the scale factor to 0 in the EmissCtrl file for DMS and Halogen species coming from the model.
An example:
! Marine Halogen Chemistry
'EVERYWHERE', 'MGEM' ,'HOI' ,'HOI' ,'GAS' ,0. ,'UNIT','a',
'EVERYWHERE', 'MGEM' ,'DMS' ,'DMS' ,'GAS' ,0. ,'UNIT','a',
'EVERYWHERE', 'MGEM' ,'CH3I' ,'CH3I' ,'GAS' ,0. ,'UNIT','a',
..
..
You would also need to add a similar rule to map your custom prepared emissions to the corresponding CMAQ species:
An example:
! My Marine Halogen Chemistry
'EVERYWHERE', 'GRIDMGEM' ,'HYPOIODUSACID' ,'HOI' ,'GAS' ,1. ,'UNIT','a',
'EVERYWHERE', 'GRIDMGEM' ,'DIMETHYLSULFIDE' ,'DMS' ,'GAS' ,1. ,'UNIT','a',
'EVERYWHERE', 'GRIDMGEM' ,'METHYLIODIDE' ,'CH3I' ,'GAS' ,1. ,'UNIT','a',
..
..
Note the above example just uses example stream label names and emission species names.
In this case, do I also still need to include the DMS and CHOLO_A fields in the OCEAN file, even though the emissions are being provided externally?
Yes, providing the fields themselves in the emissions file is sufficient enough, as the CMAQ code checks to see if those fields are present in the ocean file when using CB6R3M. However, since the fields are zero’d out after MGEMIS internally calculates the emissions, you can simply provide fields that are 0.0 for every single grid cell for both DMS and CHLO_A in the ocean file.