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

Time-varying aerosol emissions for WRFV4.4

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.

jethong

New member
Hello,
I am trying to use a time-varying aerosol emissions to run WRFV4.4.
For now, I am trying to generate a wrfqnainp_d0* file, but what variables should be in this file, and how should they organized are still unknown to me.
Could anyone share a sample file, its log file, or some descriptions ?
Regards
 
Hello jethong,

Thanks for inquiring about the new aerosol capabilities in WRF v4.4.

The wrfqnainp_d0* file is used to update the surface aerosol emissions. To generate the file during real.exe, you should set the follow namelist parameters:

Code:
&time_control
io_form_auxinput17 = 2,
auxinput17_interval = 180,

&physics
qna_update = 1

The auxinput17_interval should be changed according to your desired aerosol update frequency.

By default,
Code:
wif_input_opt = 1
Thus, once the wrfqnainp_d0* file is generated, it should contain QNWFA2D (water-friendly aerosol emissions) and QNIFA2D (ice-friendly aerosol emissions). However, in v4.4, we have added the option to also consider black carbon (BC) aerosol by setting
Code:
wif_input_opt = 2
Now, the wrfqnainp_d0* file should also contain QNBCA2D (black carbon aerosol emissions). Furthermore, if you are interested in considering smoke aerosol from biomass burning emissions, then you can set
Code:
wif_fire_emit = .true.
In this case, if
Code:
wif_input_opt = 1
then biomass burning emissions from only organic carbon (OC) are added (QNOCBB2D), and if
Code:
wif_input_opt = 2
then biomass burning emissions from both OC and BC (QNBCBB2D) are added. However, note that the climatology data set used in WPS does not contain biomass burning aerosol information. Therefore, one must use a more comprehensive data set (e.g., GEOS-5) in order to consider biomass burning aerosol. And, in this case, one must set
Code:
use_rap_aero_icbc = .true.,
instead of the default option
Code:
use_aero_icbc = .true.,

Please also refer to this website for additional information: https://www2.mmm.ucar.edu/wrf/users/physics/mp28_updated_new.html

Best,
Tim
 
Top