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

Bugfix/coupled crow #49

Merged
merged 8 commits into from
Apr 1, 2020
6 changes: 3 additions & 3 deletions workflow/config/fv3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ config_fv3:
forecast_mode=$( echo "$1" | tr a-z A-Z )

case $forecast_mode in
"gfs")
"GFS")
echo "BEGIN: config.fv3 for $forecast_mode"
export DELTIM={doc.fv3_gfs_settings.DELTIM}
export layout_x={doc.fv3_gfs_settings.layout.x}
Expand All @@ -61,7 +61,7 @@ config_fv3:
export WRTTASK_PER_GROUP_GFS={doc.fv3_gfs_settings.layout.WGRP_NTASKS}
export WRTIOBUF={doc.fv3_gfs_settings.layout.WRTIOBUF}
;;
"gdas")
"GDAS")
echo "BEGIN: config.fv3 for $forecast_mode"
export DELTIM={doc.fv3_gdas_settings.DELTIM}
export layout_x={doc.fv3_gdas_settings.layout.x}
Expand All @@ -78,7 +78,7 @@ config_fv3:
export WRTTASK_PER_GROUP_GFS={doc.fv3_gdas_settings.layout.WGRP_NTASKS}
export WRTIOBUF={doc.fv3_gdas_settings.layout.WRTIOBUF}
;;
"enkf")
"ENKF")
echo "BEGIN: config.fv3 for $forecast_mode"
export DELTIM={doc.fv3_enkf_settings.DELTIM}
export layout_x={doc.fv3_enkf_settings.layout.x}
Expand Down