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

Setup the snow DA analysis to update to the enkf ensemble members #2033

Closed
Closed
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
027916a
Initialize the configs and setups for ensemble land DA.
jiaruidong2017 Nov 4, 2023
229d6cc
Add DO_JEDILANDENS to the config.base
jiaruidong2017 Nov 4, 2023
fb9629f
Add the task landensanl for land DA updates to the ensemble members
jiaruidong2017 Nov 5, 2023
057814b
Reverted a change.
jiaruidong2017 Nov 5, 2023
73d748b
Remove the predefined COM variables.
jiaruidong2017 Nov 6, 2023
2c90836
Add jobs/JGLOBAL_LANDENS_ANALYSIS to update ensembles with snow DA.
jiaruidong2017 Nov 19, 2023
27660fe
Revert the change to the land_analysis.py
jiaruidong2017 Nov 19, 2023
dbe75a7
Remove DO_JEDILANDENS
jiaruidong2017 Nov 19, 2023
6e65049
Reuse the config.landanl for config.landensanl
jiaruidong2017 Nov 19, 2023
85311c6
Modify the config.landensanl
jiaruidong2017 Nov 20, 2023
ffd6c59
Reverted changes.
jiaruidong2017 Nov 20, 2023
67313b7
Merge branch 'develop' into feature/ens_landda
jiaruidong2017 Nov 20, 2023
9dc7d53
Address the shell check warning.
jiaruidong2017 Nov 20, 2023
ea58de5
Move the IMS data processing from preplandobs task to landanl task.
jiaruidong2017 Dec 2, 2023
8a20d1a
Remove the comments
jiaruidong2017 Dec 2, 2023
b82dfd7
Create a new get_obs_dict for skipping the IMS data copies.
jiaruidong2017 Dec 11, 2023
d808429
Merge branch 'develop' into feature/ens_landda
jiaruidong2017 Dec 13, 2023
089f3bf
Merge branch 'NOAA-EMC:develop' into feature/ens_landda
jiaruidong2017 Dec 16, 2023
ede3f9f
Add the archive to save the snow analysis to hpss.
jiaruidong2017 Dec 29, 2023
b9b2922
Fix the shell check warning.
jiaruidong2017 Dec 29, 2023
d30517d
Merge branch 'develop' into feature/ens_landda
jiaruidong2017 Dec 29, 2023
5cc3d1b
Remove gdasland list and delete vrfy and comment lines.
jiaruidong2017 Jan 3, 2024
9886210
Merge branch 'develop' into feature/ens_landda
jiaruidong2017 Jan 17, 2024
ed5963b
Merge branch 'develop' into feature/ens_landda
jiaruidong2017 Jan 28, 2024
6394992
Merge to develop to remove the deterministic changes.
jiaruidong2017 Jan 28, 2024
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
Prev Previous commit
Next Next commit
Address the shell check warning.
  • Loading branch information
jiaruidong2017 committed Nov 20, 2023
commit 9dc7d5316f0031b7e830cd9faaf407dbdb9159e0
4 changes: 2 additions & 2 deletions jobs/JGLOBAL_LANDENS_ANALYSIS
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ EXSCRIPT=${LANDANLPY:-${HOMEgfs}/scripts/exglobal_land_analysis.py}
rc=0
for imem in $(seq "${ENSBEG}" "${ENSEND}"); do

cd "${DATATOP}"
cd "${DATATOP}" || exit 99

ENSMEM=$(printf %03i "${imem}")
export ENSMEM
Expand All @@ -64,7 +64,7 @@ for imem in $(seq "${ENSBEG}" "${ENSEND}"); do
skip_mem="NO"
if [[ -f ${ELDAGRP}.fail ]]; then
set +e
memstat=$(grep "MEMBER ${ENSMEM}" "${ELDAGRP}.fail" | grep -c "PASS")
memstat=$(grep "MEMBER ${ENSMEM}" "${ELDAGRP}.fail" | grep -c "PASS") || true
set_strict
[[ ${memstat} -eq 1 ]] && skip_mem="YES"
fi
Expand Down