Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add GSI background error covariance as an option for UFS DA variational assimilation #1104

Merged
merged 9 commits into from
Nov 1, 2022
Merged
11 changes: 6 additions & 5 deletions parm/config/config.atmanal
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,12 @@

echo "BEGIN: config.atmanal"

export OBS_YAML_DIR=$HOMEgfs/sorc/gdas.cd/parm/atm/obs/config/
export OBS_LIST=$HOMEgfs/sorc/gdas.cd/parm/atm/obs/lists/gdas_prototype.yaml
export ATMVARYAML=$HOMEgfs/sorc/gdas.cd/parm/atm/variational/3dvar_dripcg.yaml
export BERROR_YAML=$HOMEgfs/sorc/gdas.cd/parm/atm/berror/staticb_identity.yaml
export FV3JEDI_FIX=$HOMEgfs/fix/gdas
export OBS_YAML_DIR=${HOMEgfs}/sorc/gdas.cd/parm/atm/obs/config/
export OBS_LIST=${HOMEgfs}/sorc/gdas.cd/parm/atm/obs/lists/gdas_prototype.yaml
export ATMVARYAML=${HOMEgfs}/sorc/gdas.cd/parm/atm/variational/3dvar_dripcg.yaml
export STATICB_TYPE="identity"
export BERROR_YAML=${HOMEgfs}/sorc/gdas.cd/parm/atm/berror/staticb_${STATICB_TYPE}.yaml
export FV3JEDI_FIX=${HOMEgfs}/fix/gdas
export R2D2_OBS_DB='ufsda_test'
export R2D2_OBS_DUMP='oper_gdas'
export R2D2_OBS_SRC='ncdiag'
Expand Down
10 changes: 8 additions & 2 deletions scripts/exgdas_global_atmos_analysis_run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,9 @@ fi
# link fix files to $DATA
# static B
CASE_BERROR=${CASE_BERROR:-${CASE_ANL:-$CASE}}
$NLN $FV3JEDI_FIX/bump/$CASE_BERROR/ $DATA/berror
if [ $STATICB_TYPE = "bump" -o $STATICB_TYPE = "gsibec" ] ; then
Fixed Show fixed Hide fixed
$NLN $FV3JEDI_FIX/$STATICB_TYPE/$CASE_BERROR/ $DATA/berror
fi

# vertical coordinate
LAYERS=$(expr $LEVS - 1)
Expand Down Expand Up @@ -139,7 +141,11 @@ export err=$?; err_chk

################################################################################
# translate FV3-JEDI increment to FV3 readable format
atmges_fv3=$COMIN_GES/${GPREFIX}atmf006.ensres.nc
if [ $CASE_BERROR = $CASE ]; then
atmges_fv3=$COMIN_GES/${GPREFIX}atmf006.nc
else
atmges_fv3=$COMIN_GES/${GPREFIX}atmf006.ensres.nc
fi
atminc_jedi=$DATA/anl/atminc.${PDY}_${cyc}0000z.nc4
atminc_fv3=$COMOUT/${CDUMP}.${cycle}.atminc.nc
if [ -s $atminc_jedi ]; then
Expand Down
2 changes: 1 addition & 1 deletion sorc/link_workflow.sh
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ if [ -d "${script_dir}/gdas.cd" ]; then
cd "${top_dir}/fix" || exit 1
[[ ! -d gdas ]] && mkdir -p gdas
cd gdas || exit 1
for gdas_sub in bump crtm fv3jedi; do
for gdas_sub in bump crtm fv3jedi gsibec; do
if [ -d "${gdas_sub}" ]; then
rm -rf "${gdas_sub}"
fi
Expand Down
1 change: 1 addition & 0 deletions versions/fix.ver
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ export datm_ver=20220805
export gdas_bump_ver=20220805
export gdas_crtm_ver=20220805
export gdas_fv3jedi_ver=20220805
export gdas_gsibec_ver=20221031
export gldas_ver=20220920
export glwu_ver=20220805
export lut_ver=20220805
Expand Down