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

Changes to get C48 aerosol test ready #1829

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
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 Externals.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ protocol = git
required = False

[GDASApp]
hash = 2774a10
hash = f614cc2
local_path = sorc/gdas.cd
repo_url = https://github.com/NOAA-EMC/GDASApp.git
protocol = git
Expand Down
18 changes: 14 additions & 4 deletions parm/config/gfs/config.resources
Original file line number Diff line number Diff line change
Expand Up @@ -249,18 +249,23 @@ elif [[ "${step}" = "aeroanlinit" ]]; then

# below lines are for creating JEDI YAML
case ${CASE} in
C768)
C768)
layout_x=8
layout_y=8
;;
C384)
layout_x=8
layout_y=8
;;
C192 | C96 | C48)
C192 | C96)
layout_x=8
layout_y=8
;;
C48 )
# this case is for testing only
layout_x=1
layout_y=1
;;
*)
echo "FATAL ERROR: Resolution not supported for aerosol analysis'"
exit 1
Expand All @@ -279,18 +284,23 @@ elif [[ "${step}" = "aeroanlinit" ]]; then
elif [[ "${step}" = "aeroanlrun" ]]; then

case ${CASE} in
C768)
C768)
layout_x=8
layout_y=8
;;
C384)
layout_x=8
layout_y=8
;;
C192 | C96 | C48)
C192 | C96)
layout_x=8
layout_y=8
;;
C48 )
# this case is for testing only
layout_x=1
layout_y=1
;;
*)
echo "FATAL ERROR: Resolution ${CASE} is not supported, ABORT!"
exit 1
Expand Down
2 changes: 1 addition & 1 deletion sorc/checkout.sh
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ if [[ ${checkout_gsi} == "YES" ]]; then
fi

if [[ ${checkout_gdas} == "YES" ]]; then
checkout "gdas.cd" "https://github.com/NOAA-EMC/GDASApp.git" "2774a10"; errs=$((errs + $?))
checkout "gdas.cd" "https://github.com/NOAA-EMC/GDASApp.git" "f614cc2"; errs=$((errs + $?))
fi

if [[ ${checkout_gsi} == "YES" || ${checkout_gdas} == "YES" ]]; then
Expand Down