Skip to content

Commit

Permalink
Fix WW3 input settings for coupled
Browse files Browse the repository at this point in the history
Two settings specifying the type of external input to WW3 is updated
to use CPL when coupling with the associated model.

Refs: NOAA-EMC#416
  • Loading branch information
WalterKolczynski-NOAA committed Aug 19, 2021
1 parent 6000368 commit 7cb3692
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions parm/config/config.wave
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,17 @@ fi

# Determine if wave component needs input and/or is coupled
export WW3ATMINP='CPL'
export WW3ICEINP='YES'
export WW3CURINP='YES'
if [[ $DO_ICE == "YES" ]]; then
export WW3ICEINP='CPL'
else
export WW3ICEINP='YES'
fi

if [[ $DO_OCN == "YES" ]]; then
export WW3CURINP='CPL'
else
export WW3CURINP='YES'
fi

# Determine if input is from perturbed ensemble (T) or single input file (F) for all members
export WW3ATMIENS='F'
Expand Down

0 comments on commit 7cb3692

Please sign in to comment.