Skip to content

Commit

Permalink
Correct crtm path in UFS DA atmospheric analysis scripts (#1111)
Browse files Browse the repository at this point in the history
UFS DA unified forward operator (UFO) validation uses `crtm/2.3.0` for radiances.     UFS DA scripts which exercise UFO for radiance assimilation should use the same CRTM coefficients.   UFS DA scripts `exgdas_global_atmos_analysis_run.sh` and `exgdas_global_atmos_ensanal_run.sh` currently use CRTM coefficients from `crtm/2.3.0_jedi`.   This is not correct. 

The CRTM coefficient path for the two UFS DA analysis scripts in question has been updated in [`feature/ufsda_crtm`.](https://github.com/NOAA-EMC/global-workflow/tree/feature/ufsda_crtm)

Fixes #1110
  • Loading branch information
RussTreadon-NOAA authored Nov 10, 2022
1 parent 51488b4 commit f64f9e5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/exgdas_global_atmos_analysis_run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ for fieldset in $fieldsets; do
done

# CRTM coeffs
$NLN $FV3JEDI_FIX/crtm/2.3.0_jedi $DATA/crtm
${NLN} "${FV3JEDI_FIX}/crtm/2.3.0" "${DATA}/crtm"

# Link executable to $DATA
$NLN $JEDIVAREXE $DATA/fv3jedi_var.x
Expand Down
2 changes: 1 addition & 1 deletion scripts/exgdas_global_atmos_ensanal_run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ for fieldset in $fieldsets; do
done

# CRTM coeffs
$NLN $FV3JEDI_FIX/crtm/2.3.0_jedi $DATA/crtm
${NLN} "${FV3JEDI_FIX}/crtm/2.3.0" "${DATA}/crtm"

# Link executable to $DATA
$NLN $JEDIENSEXE $DATA/fv3jedi_ens.x
Expand Down

0 comments on commit f64f9e5

Please sign in to comment.