11 #ifndef OOPS_ASSIMILATION_DUALVECTOR_H_
12 #define OOPS_ASSIMILATION_DUALVECTOR_H_
23 #include "oops/util/dot_product.h"
35 template<
typename MODEL,
typename OBS>
class DualVector {
51 void append(std::unique_ptr<GeneralizedDepartures> &&);
52 std::shared_ptr<const GeneralizedDepartures>
getv(
const unsigned)
const;
63 void saveDep(
const std::string &)
const;
71 std::unique_ptr<CtrlInc_>
dxjb_;
72 std::vector<std::shared_ptr<Departures_> >
dxjo_;
73 std::vector<std::shared_ptr<Increment_> >
dxjc_;
74 std::vector<unsigned>
ijo_;
75 std::vector<unsigned>
ijc_;
81 template<
typename MODEL,
typename OBS>
83 : dxjb_(), dxjo_(), dxjc_(),
84 ijo_(other.ijo_), ijc_(other.ijc_), size_(other.size_)
86 if (other.
dxjb_ != 0) {
89 for (
unsigned jj = 0; jj < other.
dxjo_.size(); ++jj) {
93 for (
unsigned jj = 0; jj < other.
dxjc_.size(); ++jj) {
99 template<
typename MODEL,
typename OBS>
109 template<
typename MODEL,
typename OBS>
112 std::shared_ptr<GeneralizedDepartures> sv = std::move(uv);
113 std::shared_ptr<Increment_> si = std::dynamic_pointer_cast<Increment_>(sv);
116 ijc_.push_back(size_);
118 std::shared_ptr<Departures_> sd = std::dynamic_pointer_cast<Departures_>(sv);
121 ijo_.push_back(size_);
123 ASSERT(si !=
nullptr || sd !=
nullptr);
127 template<
typename MODEL,
typename OBS>
128 std::shared_ptr<const GeneralizedDepartures>
131 std::shared_ptr<const GeneralizedDepartures> pv;
132 for (
unsigned jj = 0; jj < ijo_.size(); ++jj) {
133 if (ijo_[jj] == ii) pv = dxjo_[jj];
135 for (
unsigned jj = 0; jj < ijc_.size(); ++jj) {
136 if (ijc_[jj] == ii) pv = dxjc_[jj];
142 template<
typename MODEL,
typename OBS>
144 ASSERT(this->compatible(rhs));
148 for (
unsigned jj = 0; jj < dxjo_.size(); ++jj) {
149 *dxjo_[jj] = *rhs.
dxjo_[jj];
151 for (
unsigned jj = 0; jj < dxjc_.size(); ++jj) {
152 *dxjc_[jj] = *rhs.
dxjc_[jj];
157 template<
typename MODEL,
typename OBS>
159 ASSERT(this->compatible(rhs));
161 *dxjb_ += *rhs.
dxjb_;
163 for (
unsigned jj = 0; jj < dxjo_.size(); ++jj) {
164 *dxjo_[jj] += *rhs.
dxjo_[jj];
166 for (
unsigned jj = 0; jj < dxjc_.size(); ++jj) {
167 *dxjc_[jj] += *rhs.
dxjc_[jj];
172 template<
typename MODEL,
typename OBS>
174 ASSERT(this->compatible(rhs));
176 *dxjb_ -= *rhs.
dxjb_;
178 for (
unsigned jj = 0; jj < dxjo_.size(); ++jj) {
179 *dxjo_[jj] -= *rhs.
dxjo_[jj];
181 for (
unsigned jj = 0; jj < dxjc_.size(); ++jj) {
182 *dxjc_[jj] -= *rhs.
dxjc_[jj];
187 template<
typename MODEL,
typename OBS>
192 for (
unsigned jj = 0; jj < dxjo_.size(); ++jj) {
195 for (
unsigned jj = 0; jj < dxjc_.size(); ++jj) {
201 template<
typename MODEL,
typename OBS>
206 for (
unsigned jj = 0; jj < dxjo_.size(); ++jj) {
209 for (
unsigned jj = 0; jj < dxjc_.size(); ++jj) {
214 template<
typename MODEL,
typename OBS>
216 ASSERT(this->compatible(rhs));
218 dxjb_->axpy(zz, *rhs.
dxjb_);
220 for (
unsigned jj = 0; jj < dxjo_.size(); ++jj) {
221 dxjo_[jj]->axpy(zz, *rhs.
dxjo_[jj]);
223 for (
unsigned jj = 0; jj < dxjc_.size(); ++jj) {
224 dxjc_[jj]->axpy(zz, *rhs.
dxjc_[jj]);
228 template<
typename MODEL,
typename OBS>
230 ASSERT(this->compatible(x2));
233 zz += dot_product(*dxjb_, *x2.
dxjb_);
235 for (
unsigned jj = 0; jj < dxjo_.size(); ++jj) {
236 zz += dot_product(*dxjo_[jj], *x2.
dxjo_[jj]);
238 for (
unsigned jj = 0; jj < dxjc_.size(); ++jj) {
239 zz += dot_product(*dxjc_[jj], *x2.
dxjc_[jj]);
244 template<
typename MODEL,
typename OBS>
246 bool lcheck = (dxjb_ == 0) == (other.
dxjb_ == 0)
247 && (dxjo_.size() == other.
dxjo_.size())
248 && (dxjc_.size() == other.
dxjc_.size());
252 template<
typename MODEL,
typename OBS>
254 for (
unsigned jj = 0; jj < dxjo_.size(); ++jj) {
255 dxjo_[jj]->save(name);
Difference between two observation vectors.
Container of dual space vectors for all terms of the cost function.
ControlIncrement< MODEL, OBS > CtrlInc_
std::vector< unsigned > ijc_
std::vector< std::shared_ptr< Departures_ > > dxjo_
const CtrlInc_ & dx() const
bool compatible(const DualVector &other) const
DualVector & operator*=(const double)
DualVector & operator=(const DualVector &)
Increment< MODEL > Increment_
DualVector & operator+=(const DualVector &)
double dot_product_with(const DualVector &) const
void append(std::unique_ptr< GeneralizedDepartures > &&)
Departures< OBS > Departures_
std::shared_ptr< const GeneralizedDepartures > getv(const unsigned) const
std::vector< std::shared_ptr< Increment_ > > dxjc_
void axpy(const double, const DualVector &)
std::unique_ptr< CtrlInc_ > dxjb_
std::vector< unsigned > ijo_
DualVector & operator-=(const DualVector &)
void saveDep(const std::string &) const
Increment class used in oops.
The namespace for the main oops code.
real(kind_real), parameter, public pi
Pi.