Skip to content

Commit

Permalink
Merge pull request #1 from bbakernoaa/EP5dtest
Browse files Browse the repository at this point in the history
add new extdata and fix blended emissions
  • Loading branch information
NeilBarton-NOAA authored Feb 28, 2024
2 parents 686f9ae + fc3dccb commit 4252ff1
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
2 changes: 1 addition & 1 deletion parm/config/gfs/config.aero
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export AERO_INPUTS_DIR

export AERO_DIAG_TABLE="${HOMEgfs}/parm/ufs/fv3/diag_table.aero"
export AERO_FIELD_TABLE="${HOMEgfs}/parm/ufs/fv3/field_table.aero"
# Biomass burning emission dataset. Choose from: gbbepx, qfed, none
# Biomass burning emission dataset. Choose from: gbbepx, qfed, qfed_blended, none
export AERO_EMIS_FIRE="qfed"
# Directory containing GOCART configuration files
export AERO_CONFIG_DIR="${HOMEgfs}/parm/ufs/gocart"
Expand Down
8 changes: 8 additions & 0 deletions parm/ufs/gocart/ExtData.qfed_blended
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#====== BIOMASS BURNING EMISSIONS =======================================

# QFED
#--------------------------------------------------------------------------------------------------------------------------------
SU_BIOMASS NA N Y %y4-%m2-%d2t12:00:00 none 0.7778 SO2 qfed_blended_so2.nc
OC_BIOMASS NA N Y %y4-%m2-%d2t12:00:00 none 0.7778 OC qfed_blended_oc.nc
BC_BIOMASS NA N Y %y4-%m2-%d2t12:00:00 none 0.7778 BC qfed_blended_bc.nc
# EMI_NH3_BB NA N Y %y4-%m2-%d2t12:00:00 none 0.7778 NH3 qfed_bledned_nh3.nc
6 changes: 5 additions & 1 deletion ush/forecast_postdet.sh
Original file line number Diff line number Diff line change
Expand Up @@ -954,7 +954,11 @@ GOCART_rc() {
fi

if [[ ${BLENDED_WILDFIRE_EMISSIONS} == T ]]; then
fire_org='ExtData/nexus/QFED/%y4/%m2/qfed2.emis_so2.006.%y4%m2%d2.nc4'
fire_org='qfed_blended_so2.nc'
sed -i "s:${fire_org}:${fire_out}:g" ${DATA}/AERO_ExtData.rc
fire_org='qfed_blended_oc.nc'
sed -i "s:${fire_org}:${fire_out}:g" ${DATA}/AERO_ExtData.rc
fire_org='qfed_blended_bc.nc'
sed -i "s:${fire_org}:${fire_out}:g" ${DATA}/AERO_ExtData.rc
fi
}
Expand Down

0 comments on commit 4252ff1

Please sign in to comment.