Skip to content

Enable reduced ensemble size for early cycle in marine DA #3628

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

Open
wants to merge 18 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
018b304
add some ensemble math
AndrewEichmann-NOAA May 1, 2025
98e3b91
Merge branch 'develop' into feature/reduce-marine-ens
AndrewEichmann-NOAA May 1, 2025
8a792d9
Merge branch 'develop' into feature/reduce-marine-ens
AndrewEichmann-NOAA May 2, 2025
6f00b82
Merge branch 'develop' into feature/reduce-marine-ens
aerorahul May 5, 2025
fef8f7d
Merge branch 'develop' into feature/reduce-marine-ens
AndrewEichmann-NOAA May 8, 2025
734804a
add condition DOHYBVAR_OCN
AndrewEichmann-NOAA May 8, 2025
fa067b4
Merge branch 'feature/reduce-marine-ens' of github.com:AndrewEichmann…
AndrewEichmann-NOAA May 8, 2025
ceaa044
Merge branch 'develop' into feature/reduce-marine-ens
AndrewEichmann-NOAA May 8, 2025
0009199
Merge branch 'develop' into feature/reduce-marine-ens
AndrewEichmann-NOAA May 12, 2025
edf6442
Merge branch 'develop' into feature/reduce-marine-ens
AndrewEichmann-NOAA May 13, 2025
4d7122c
Merge branch 'develop' into feature/reduce-marine-ens
AndrewEichmann-NOAA May 14, 2025
393f553
Merge branch 'develop' into feature/reduce-marine-ens
AndrewEichmann-NOAA May 14, 2025
d6169e2
Merge branch 'develop' into feature/reduce-marine-ens
AndrewEichmann-NOAA May 21, 2025
81cb63e
Merge branch 'develop' into feature/reduce-marine-ens
AndrewEichmann-NOAA May 22, 2025
daa1ac6
Merge branch 'develop' into feature/reduce-marine-ens
aerorahul May 22, 2025
13149c4
Merge branch 'develop' into feature/reduce-marine-ens
aerorahul May 23, 2025
4eb24dd
Merge branch 'develop' into feature/reduce-marine-ens
aerorahul May 23, 2025
bf422bd
Merge branch 'develop' into feature/reduce-marine-ens
AndrewEichmann-NOAA May 27, 2025
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
5 changes: 5 additions & 0 deletions jobs/JGDAS_GLOBAL_OCEAN_ANALYSIS_ECEN
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ YMD=${PDY} HH=${cyc} declare_from_tmpl -rx \
COMIN_ICE_RESTART:COM_ICE_RESTART_TMPL \
COMOUT_ICE_ANALYSIS:COM_ICE_ANALYSIS_TMPL

export NMEM_ENS_MAX=${NMEM_ENS}
if [[ "${RUN}" == "gfs" ]]; then
NMEM_ENS=${NMEM_ENS_GFS}
fi

##############################################
# Begin JOB SPECIFIC work
##############################################
Expand Down
8 changes: 8 additions & 0 deletions jobs/JGLOBAL_MARINE_BMAT
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,14 @@ gcyc=${GDATE:8:2}
export GDUMP="gdas"
export GDUMP_ENS="enkf${GDUMP}"

export NMEM_ENS_MAX=${NMEM_ENS}
if [[ "${RUN}" == "gfs" && "${DOHYBVAR_OCN}" == "YES" ]]; then
NMEM_ENS=${NMEM_ENS_GFS}
export mem_offset=$((NMEM_ENS_GFS_OFFSET * cyc/6))
else
export mem_offset=0
fi

##############################################
# Begin JOB SPECIFIC work
##############################################
Expand Down