11 #ifndef OOPS_ASSIMILATION_COSTJBJQ_H_
12 #define OOPS_ASSIMILATION_COSTJBJQ_H_
17 #include "eckit/config/LocalConfiguration.h"
25 #include "oops/util/dot_product.h"
26 #include "oops/util/Duration.h"
27 #include "oops/util/Logger.h"
46 CostJbJq(
const eckit::Configuration &,
const eckit::mpi::Comm &,
82 std::unique_ptr<ModelSpaceCovarianceBase<MODEL> >
B_;
85 std::unique_ptr<const Geometry_>
resol_;
86 const eckit::LocalConfiguration
conf_;
96 template<
typename MODEL>
100 : B_(), xb_(xb), ctlvars_(ctlvars), resol_(), conf_(config), commTime_(comm),
101 first_(comm.rank() == 0)
103 Log::trace() <<
"CostJbJq contructed." << std::endl;
108 template<
typename MODEL>
110 Log::trace() <<
"CostJbJq::linearize start" << std::endl;
112 const eckit::LocalConfiguration covConf(conf_,
"background error");
114 std::vector<eckit::LocalConfiguration> confs;
115 covConf.get(
"covariances", confs);
116 ASSERT(confs.size() == lowres.
timeComm().size());
117 eckit::LocalConfiguration myconf = confs[lowres.
timeComm().rank()];
120 Log::trace() <<
"CostJbJq::linearize done" << std::endl;
125 template<
typename MODEL>
128 Log::trace() <<
"CostJbJq::computeIncrement start" << std::endl;
129 static int tag = 13579;
130 size_t mytime = commTime_.rank();
134 if (mytime + 1 < commTime_.size()) {
149 Log::info() <<
"CostJbJq: x_i - M(x_{i-1})" << dx << std::endl;
150 Log::trace() <<
"CostJbJq::computeIncrement done" << std::endl;
155 template<
typename MODEL>
158 Log::trace() <<
"CostJbJq::addGradient start" << std::endl;
166 B_->inverseMultiply(dxFG, gg);
169 Log::trace() <<
"CostJbJq::addGradient done" << std::endl;
174 template<
typename MODEL>
176 Log::trace() <<
"CostJbJq::initializeJqTLAD" << std::endl;
182 template<
typename MODEL>
184 Log::trace() <<
"CostJbJq::initializeJqTL start" << std::endl;
186 Log::trace() <<
"CostJbJq::initializeJqTL done" << std::endl;
192 template<
typename MODEL>
194 Log::trace() <<
"CostJbJq::initializeJqAD start" << std::endl;
197 Log::trace() <<
"CostJbJq::initializeJqAD done" << std::endl;
203 template<
typename MODEL>
205 Log::trace() <<
"CostJbJq::Bmult start" << std::endl;
206 B_->multiply(dxin, dxout);
207 Log::trace() <<
"CostJbJq::Bmult done" << std::endl;
212 template<
typename MODEL>
214 Log::trace() <<
"CostJbJq::Bminv start" << std::endl;
215 B_->inverseMultiply(dxin, dxout);
216 Log::trace() <<
"CostJbJq::Bminv done" << std::endl;
221 template<
typename MODEL>
223 Log::trace() <<
"CostJbJq::randomize start" << std::endl;
225 Log::trace() <<
"CostJbJq::randomize done" << std::endl;
230 template<
typename MODEL>
232 Log::trace() <<
"CostJbJq::newStateIncrement start" << std::endl;
234 Log::trace() <<
"CostJbJq::newStateIncrement done" << std::endl;
void Bmult(const Increment_ &, Increment_ &) const override
Multiply by and .
std::unique_ptr< const Geometry_ > resol_
void randomize(Increment_ &) const override
Randomize.
const eckit::mpi::Comm & commTime_
Increment_ * newStateIncrement() const override
Create new increment (set to 0).
CostJbJq(const eckit::Configuration &, const eckit::mpi::Comm &, const Geometry_ &, const Variables &, const State_ &)
Construct .
void computeIncrement(const State_ &, const State_ &, const State_ &, Increment_ &) const override
Get increment from state (usually first guess).
JqTermTLAD< MODEL > * initializeJqTL() const override
Finalize after the TL run.
void linearize(const State_ &, const Geometry_ &) override
Linearize before the linear computations.
Increment< MODEL > Increment_
virtual ~CostJbJq()
Destructor.
std::unique_ptr< ModelSpaceCovarianceBase< MODEL > > B_
JqTermTLAD< MODEL > * initializeJqAD(const Increment_ &) const override
Initialize forcing before the AD run.
void addGradient(const Increment_ &, Increment_ &, Increment_ &) const override
Add Jb gradient.
void Bminv(const Increment_ &, Increment_ &) const override
JqTermTLAD< MODEL > * initializeJqTLAD() const override
Finalize after the model run.
Geometry< MODEL > Geometry_
const eckit::LocalConfiguration conf_
Jb Cost Function Base Class.
Geometry class used in oops; subclass of interface class interface::Geometry.
const eckit::mpi::Comm & timeComm() const
Accessor to the MPI communicator for distribution in time.
Increment class used in oops.
void setupAD(const Increment_ &dx)
State class used in oops; subclass of interface class interface::State.
void diff(const State_ &state1, const State_ &state2)
Set this Increment to be difference between state1 and state2.
void send(const eckit::mpi::Comm &comm, const SERIALIZABLE &sendobj, const int dest, const int tag)
Extend eckit Comm for Serializable oops objects.
void receive(const eckit::mpi::Comm &comm, SERIALIZABLE &recvobj, const int source, const int tag)
The namespace for the main oops code.