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

Add options to inflate the ensemble while recentering #1501

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
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
16 changes: 16 additions & 0 deletions utils/soca/gdas_ens_handler.h
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,22 @@ namespace gdasapp {
// Set variables to zero if specified in the configuration
postProcIncr.setToZero(incr);

// Optionally apply inflation
if (fullConfig.has("ensemble inflation.value")) {
const double inflation = fullConfig.getDouble("ensemble inflation.value");
mom6_incr *= inflation;
oops::Log::info() << "incr after scalar inflation " << i << ":"
<< mom6_incr << std::endl;
}
if (fullConfig.has("ensemble inflation.field")) {
soca::Increment weight(geomOut, mom6_incr.variables(), mom6_incr.validTime());
const eckit::LocalConfiguration weightConf(fullConfig, "ensemble inflation.field");
weight.read(weightConf);
mom6_incr.schur_product_with(weight);
oops::Log::info() << "incr after field inflation " << i << ":"
<< mom6_incr << std::endl;
}

// Save the increments used to initialize the ensemble forecast
result = postProcIncr.save(mom6_incr, i+1);

Expand Down