Scheduled Downtime
On Friday 21 April 2023 @ 5pm MT, this website will be down for maintenance and expected to return online the morning of 24 April 2023 at the latest

BVOC Emission

This post was from a previous version of the WRF&MPAS-A Support Forum. New replies have been disabled and if you have follow up questions related to this post, then please start a new thread from the forum home page.

maosier

New member
Hi,

I'm running WRF-Chem with online MGEAN and the variables related to biogenic emissions in the wrfout files are shown below.
float EBIO_ISO(Time, south_north, west_east) ;
EBIO_ISO:FieldType = 104 ;
EBIO_ISO:MemoryOrder = "XY " ;
EBIO_ISO:description = "Actual biog emiss" ;
EBIO_ISO:units = "mol km^-2 hr^-1" ;
EBIO_ISO:stagger = "" ;
EBIO_ISO:coordinates = "XLONG XLAT XTIME" ;
float EBIO_API(Time, south_north, west_east) ;
EBIO_API:FieldType = 104 ;
EBIO_API:MemoryOrder = "XY " ;
EBIO_API:description = "Actual biog emiss" ;
EBIO_API:units = "mol km^-2 hr^-1" ;
EBIO_API:stagger = "" ;

Does the WRF-Chem model only write these two variables (EBIO_ISO and EBIO_API) to the wrfout file? How can I calculate all biogenic-related emissions?

Thanks a lot,
Maosier
 
Hi Maosier,

To add more species to the output, you can either add an "h" to the 8th column of the desired diagnostics in the Registry, e.g.,

change:

state real ebio_lim ij misc 1 - r "ebio_lim" "Actual biog emiss" "mol km^-2 hr^-1"

to:

state real ebio_lim ij misc 1 - rh "ebio_lim" "Actual biog emiss" "mol km^-2 hr^-1"

Then performing a "./clean -a" and recompiling.

Otherwise, you can add an io_field file to your run directory to alter the history stream without recompiling (see the WRF ARW user guide for details).

Jordan
 
Top