Difference between revisions of "QFED biomass burning emissions"

From Geos-chem
Jump to: navigation, search
(Previous issues now resolved)
(Biomass burning emissions diagnostic is zero when QFED is used)
Line 41: Line 41:
 
'''''[[User:Bmy|Bob Yantosca]] wrote:'''''
 
'''''[[User:Bmy|Bob Yantosca]] wrote:'''''
  
:I think I can shed some light on [this issue]. In GEOS-Chem we have an include file <tt>GeosCore/hcoi_gc_diagn_include.H</tt> that specifies the category numbers for GEOS-Chem manual diagnostics.  These are used in the calls to <tt>DIAGN_CREATE<tt> in </tt>GeosCore/hcoi_gc_diagn_mod.F90</tt>. The file looks like this:
+
:I think I can shed some light on [this issue]. In GEOS-Chem we have an include file <tt>GeosCore/hcoi_gc_diagn_include.H</tt> that specifies the category numbers for GEOS-Chem manual diagnostics.  These are used in the calls to <tt>DIAGN_CREATE<tt> in <tt>GeosCore/hcoi_gc_diagn_mod.F90</tt>. The file looks like this:
  
 
   !EOC
 
   !EOC

Revision as of 19:18, 14 September 2016

Overview

NOTE: The QFED biomass burning emissions inventory is available for simulations with GEOS-Chem v10-01 and higher versions via the HEMCO emissions component. While the standard GEOS-Chem simulation uses GFED4 biomass burning emissions, you may select QFED instead of GFED4 if your research requires it.

From the GMAO website:

The Quick Fire Emissions Dataset (QFED) was developed to enable biomass-burning emissions of atmospheric constituents to be included in the NASA Goddard Earth Observing System (GEOS) modeling and data assimilation systems. The QFED emissions are based on the fire radiative power (FRP) approach and draw on the cloud correction method developed in the Global Fire Assimilation System (GFAS), QFED however employs more sophisticated treatment of non-observed (e.g., obscured by clouds) land areas. Location and FRP of fires are obtained from the Moderate Resolution Imaging Spectroradiometer (MODIS) Level 2 fire products (MOD14 and MYD14) and the MODIS Geolocation products (MOD03 and MYD03). Major advantages of QFED are the high spatial and temporal resolutions, and near-real time availability. Currently, QFED provides daily-mean emissions of black carbon, organic carbon, sulfur dioxide, carbon monoxide, carbon dioxide, PM2.5, ammonia, nitrogen oxides, methyl ethyl ketone, propylene, ethane, propane, n- and i-butane, acetaldehyde, formaldehyde, acetone and methane.
QFED emissions at 0.1x0.1 degrees horizontal resolution were used in the 7-km GEOS-5 Nature Run experiment (NR-c1440) to provide global fire emissions for the interactive aerosol chemistry simulated with an online implementation of the Goddard Chemistry, Aerosol, Radiation, and Transport model (GOCART). An example of instantaneous aerosol optical thickness (AOT) in September 2005 shows that the global mesoscale simulation benefited from the high resolution QFED emissions and was able to produce realistic individual fire plumes as well as large scale features from fires in Africa and the Americas.

Previous issues now resolved

Biomass burning emissions diagnostic is zero when QFED is used

NOTE: This fix will be added to GEOS-Chem v11-01g.

Some users reported zero biomass burning emissions in the ND28 diagnostic output when QFED emissions were enabled in the HEMCO_Confic.rc file. To resolve this, users can change the emissions category for QFED to 5 in HEMCO_Config.rc.

Christoph Keller wrote:

You need to set the emission category of QFED to 5 instead of 3:
 (((QFED2
 0 QFED_Hg    $ROOT/QFED/v2014-09/$YYYY/$MM/qfed2.emis_co.005.$YYYY$MM$DD.nc4   biomass 2000-2013/1-12/1-31/0 C xy kg/m2/s Hg0   54/75 5 2
 )))QFED2
The key is to make sure that the HEMCO diagnostics (in hcoi_gc_diagn_mod.F90) use the correct combination of extension number and emission category. For instance, if GFED (FINN) is enabled biomass burning emissions come from extension number 111 (114) and the emission category should be –1. If neither GFED nor FINN is enabled, the extension number is 0 and category is set to CATEGORY_BIOMASS (which is hardcoded to 5 in hcoi_gc_diagn_include.H). The variables ExtNr and Cat are defined at the beginning of subroutine DIAGN_BIOMASS in hcoi_gc_diagn_mod.F90:
   ! First test if GFED is used.  If not, then test if FINN is used.
   ! If not, then use extension # 0 and the default biomass category.
   Cat   = -1
   ExtNr = GetExtNr( HcoState%Config%ExtList, 'GFED' )
   IF ( ExtNr <= 0 ) ExtNr = GetExtNr( HcoState%Config%ExtList, 'FINN' )
   IF ( ExtNr <= 0 ) THEN
      ExtNr = 0
      Cat   = CATEGORY_BIOMASS
   ENDIF
So if you make sure that the emission category assigned to QFED in your HEMCO configuration file is the same as CATEGORY_BIOMASS, it should work.

Bob Yantosca wrote:

I think I can shed some light on [this issue]. In GEOS-Chem we have an include file GeosCore/hcoi_gc_diagn_include.H that specifies the category numbers for GEOS-Chem manual diagnostics. These are used in the calls to DIAGN_CREATE<tt> in <tt>GeosCore/hcoi_gc_diagn_mod.F90. The file looks like this:
 !EOC
 !------------------------------------------------------------------------------
 !                  Harvard-NASA Emissions Component (HEMCO)                   !
 !------------------------------------------------------------------------------
 !BOP
 !
 ! !IROUTINE: hcoi_gc_diagn_include.H
 !
 ! !DESCRIPTION: Contains emissions category definitions as used within the
 !  HEMCO_Config.rc file.
 !\\
 !\\
 ! !REMARKS:
 !  These categories hould correspond with the HEMCO_Config.rc file.  If you
 !  change the category listings in HEMCO_Config.rc, then update this file
 !  accordingly.
 ! 
 ! !REVISION HISTORY: 
 !  01 Oct 1995 - R. Yantosca - Initial version
 !  08 Dec 2009 - R. Yantosca - Added ProTeX headers
 !  22 Feb 2015 - C. Keller   - Added eruptive and degassing volcanoes.
 !
 ! !DEFINED PARAMETERS:
 !
   INTEGER, PARAMETER :: CATEGORY_ANTHRO        = 1
   INTEGER, PARAMETER :: CATEGORY_BIOFUEL       = 2
   INTEGER, PARAMETER :: CATEGORY_NATURAL       = 3 
   INTEGER, PARAMETER :: CATEGORY_BIOGENIC      = 4
   INTEGER, PARAMETER :: CATEGORY_BIOMASS       = 5
   INTEGER, PARAMETER :: CATEGORY_SHIP          = 10
   INTEGER, PARAMETER :: CATEGORY_AIRCRAFT      = 20
   INTEGER, PARAMETER :: CATEGORY_VOLCANO       = 50
   INTEGER, PARAMETER :: CATEGORY_VOLCANO_ERUPT = 51
   INTEGER, PARAMETER :: CATEGORY_VOLCANO_DEGAS = 52
 !EOP
 !------------------------------------------------------------------------------
 !BOC
NOTE: hcoi_gc_diagn_include.H is not part of HEMCO (i.e. it’s not used in the standalone), but it just facilitates the HEMCO interface to GEOS-Chem.
Long story short: to have GEOS-Chem archive HEMCO diagnostics properly to the bpch file, you have to make sure that the HEMCO_Config.rc file uses the same categories as specified in hcoi_gc_diagn_include.H. This is true at least for non-extension emissions.
For example, If you use GFED or FINN, then hcoi_gc_diagn_mod.F gets the extension number of GFED or FINN directly from HEMCO, so no need to match it with the include file. On the other hand, if you are using QFED biomass (which is just read from disk files), then you need to use category 5 since so that you match the CATEGORY_BIOMASS parameter in hcoi_gc_diagn_include.H. Once you do that, the QFED emissions should show up in the ND28 biomass emissions, etc.

--Melissa Sulprizio (talk) 19:16, 14 September 2016 (UTC)

References

  1. Darmenov, A. and da Silva, A., The Quick Fire Emissions Dataset (QFED): Documentation of versions 2.1, 2.2 and 2.4, NASA Technical Report Series on Global Modeling and Data Assimilation NASA TM-2015-104606, Volume 38, http://gmao.gsfc.nasa.gov/pubs/docs/Darmenov796.pdf, 2015.