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

Save the correct field for ssh_u #622

Merged
merged 2 commits into from
Sep 13, 2023
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
10 changes: 6 additions & 4 deletions parm/soca/berror/saber_blocks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,21 +32,23 @@ components:
ice_filename: 'ice.bkgerr_stddev.incr.{{ATM_WINDOW_BEGIN}}.nc'
date: '{{ATM_WINDOW_MIDDLE}}'
t_min: 0.1
t_max: 10.0
t_max: 5.0
s_min: 0.1
s_max: 10.0
s_max: 1.0
ssh_min: 0.0 # std ssh=0 => ssh balance applied as
ssh_max: 0.0 # strong constraint
ssh_max: 1.0 # strong constraint
cicen_min: 0.1
cicen_max: 0.5
hicen_min: 0.0
hicen_max: 0.0
standard deviation: true

- linear variable change name: BalanceSOCA
ksshts:
nlayers: 10

weight:
value: 1.0
value: 0.25
- covariance:
covariance model: ensemble
members from template:
Expand Down
2 changes: 1 addition & 1 deletion parm/soca/berror/soca_ensweights.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ background:
weights:
# Need to provide weights^2 when reading from file
ice: 0.0025 # 5% of original variance
ocean: 0.01 # 10% " "
ocean: 0.0625 # 25% " "

output:
datadir: ./
Expand Down
2 changes: 1 addition & 1 deletion scripts/exgdas_global_marine_analysis_vrfy.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
config = plotConfig(grid_file=grid_file,
data_file=data_file,
variables_horiz={'ave_ssh': [-1, 1]},
colormap='gist_ncar',
colormap='seismic',
comout=os.path.join(comout, 'vrfy', 'recentering_error'))
recErrPlotter = statePlotter(config)
recErrPlotter.plot()
Expand Down
2 changes: 1 addition & 1 deletion utils/soca/gdas_ens_handler.h
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ namespace gdasapp {
oops::Log::info() << "mean non-steric ssh: " << sshMean << std::endl;
oops::Log::info() << "std non-steric ssh: " << sshNonStericStd << std::endl;
eckit::LocalConfiguration nonStericSshOutputConfig(fullConfig, "ssh output.unbalanced");
sshStd.write(nonStericSshOutputConfig);
sshNonStericStd.write(nonStericSshOutputConfig);

// Compute filtered ensemble moments
ensMean.zero();
Expand Down
Loading