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

Actually switch to CRTM 2.4 now #550

Merged
merged 2 commits into from
Aug 4, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion test/atm/global-workflow/config.atmanl
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ export io_layout_x=1
export io_layout_y=1

export JEDIEXE=${HOMEgfs}/exec/fv3jedi_var.x
export crtm_VERSION="2.3.0"
export crtm_VERSION="2.4.0"

echo "END: config.atmanl"
2 changes: 1 addition & 1 deletion ush/ufoeval/run_ufo_hofx_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ mkdir -p $workdir

# Link CRTM coefficients
[ -d $workdir/crtm ] && rm -rf $workdir/crtm
ln -sf $FixDir/crtm/2.3.0 $workdir/crtm
ln -sf $FixDir/crtm/2.4.0 $workdir/crtm

# copy BC files
if [ $radiance = "YES" ]; then
Expand Down
2 changes: 1 addition & 1 deletion ush/ufsda/stage.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def gdas_fix(input_fix_dir, working_dir, config):
ufsda.disk_utils.symlink(os.path.join(gdasapp_parm, 'io', 'fv3jedi_fieldmetadata_restart.yaml'),
os.path.join(config['fv3jedi_fieldmetadata_dir'], 'fv3jedi_fieldmetadata_restart.yaml'))
# link CRTM coeff dir
ufsda.disk_utils.symlink(os.path.join(input_fix_dir, 'crtm', '2.3.0'),
ufsda.disk_utils.symlink(os.path.join(input_fix_dir, 'crtm', '2.4.0'),
config['CRTM_COEFF_DIR'])


Expand Down
Loading