OOPS
ControlVariable.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2009-2016 ECMWF.
3  *
4  * This software is licensed under the terms of the Apache Licence Version 2.0
5  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
6  * In applying this licence, ECMWF does not waive the privileges and immunities
7  * granted to it by virtue of its status as an intergovernmental organisation nor
8  * does it submit to any jurisdiction.
9  */
10 
11 #ifndef OOPS_ASSIMILATION_CONTROLVARIABLE_H_
12 #define OOPS_ASSIMILATION_CONTROLVARIABLE_H_
13 
14 #include <cmath>
15 #include <ostream>
16 #include <string>
17 
18 #include "eckit/config/Configuration.h"
19 #include "oops/base/Geometry.h"
21 #include "oops/base/ObsSpaces.h"
22 #include "oops/base/State.h"
23 #include "oops/base/Variables.h"
25 #include "oops/util/ObjectCounter.h"
26 #include "oops/util/Printable.h"
27 
28 namespace oops {
29 
30 /// Control variable
31 /*!
32  * The control variable acts as a container for the inputs of the variational
33  * data assimilation cost functions in physical space.
34  * That includes the states at the start the assimilation window or of each
35  * sub-window but also additional variables such as model bias, VarBC
36  * coefficients, or other control variables for algorithms that use them.
37  * This is mostly a convenience class that is used to keep things together
38  * and reduce the number of arguments to be passed around.
39  */
40 
41 template<typename MODEL, typename OBS> class ControlVariable;
42 
43 // -----------------------------------------------------------------------------
44 template<typename MODEL, typename OBS>
45 class ControlVariable : public util::Printable,
46  private util::ObjectCounter<ControlVariable<MODEL, OBS> > {
52 
53  public:
54  static const std::string classname() {return "oops::ControlVariable";}
55 
56 /// The arguments define the number of sub-windows and the resolution
57  ControlVariable(const eckit::Configuration &, const Geometry_ &, const ObsSpaces_ &);
58  explicit ControlVariable(const ControlVariable &);
60 
61 /// I/O and diagnostics
62  void read(const eckit::Configuration &);
63  void write(const eckit::Configuration &) const;
64  double norm() const;
65 
66 /// Get state control variable
67  State_ & state() {return state_;}
68  const State_ & state() const {return state_;}
69 
70 /// Get augmented model control variable
71  ModelAux_ & modVar() {return modbias_;}
72  const ModelAux_ & modVar() const {return modbias_;}
73 
74 /// Get augmented observation control variable
76  const ObsAuxCtrls_ & obsVar() const {return obsbias_;}
77 
78  private:
79  ControlVariable & operator= (const ControlVariable &); // No assignment
80  void print(std::ostream &) const;
81 
83  ModelAux_ modbias_; // not only for bias, better name?
84  ObsAuxCtrls_ obsbias_; // not only for bias, better name?
85 };
86 
87 // =============================================================================
88 
89 template<typename MODEL, typename OBS>
90 ControlVariable<MODEL, OBS>::ControlVariable(const eckit::Configuration & conf,
91  const Geometry_ & resol, const ObsSpaces_ & odb)
92  : state_(resol, eckit::LocalConfiguration(conf, "background")),
93  modbias_(resol, conf.getSubConfiguration("model aux control")),
94  obsbias_(odb, conf.getSubConfiguration("observations"))
95 {
96  Log::trace() << "ControlVariable contructed" << std::endl;
97 }
98 
99 // -----------------------------------------------------------------------------
100 
101 template<typename MODEL, typename OBS>
103  : state_(other.state_), modbias_(other.modbias_), obsbias_(other.obsbias_)
104 {
105  Log::trace() << "ControlVariable copied" << std::endl;
106 }
107 
108 // -----------------------------------------------------------------------------
109 
110 template<typename MODEL, typename OBS>
112  Log::trace() << "ControlVariable destructed" << std::endl;
113 }
114 
115 // -----------------------------------------------------------------------------
116 
117 template<typename MODEL, typename OBS>
118 void ControlVariable<MODEL, OBS>::read(const eckit::Configuration & config) {
119  state_.read(config);
120  modbias_.read(config);
121  obsbias_.read(config);
122 }
123 
124 // -----------------------------------------------------------------------------
125 
126 template<typename MODEL, typename OBS>
127 void ControlVariable<MODEL, OBS>::write(const eckit::Configuration & config) const {
128  state_.write(config);
129  modbias_.write(config);
130  obsbias_.write(config);
131 }
132 
133 // -----------------------------------------------------------------------------
134 
135 template <typename MODEL, typename OBS>
136 void ControlVariable<MODEL, OBS>::print(std::ostream & outs) const {
137  outs << state_ << std::endl;
138  outs << modbias_ << std::endl;
139  outs << obsbias_;
140 }
141 
142 // -----------------------------------------------------------------------------
143 
144 template<typename MODEL, typename OBS>
146  double zz = state_.norm();
147  double zn = zz * zz;
148  zz = modbias_.norm();
149  zn += zz * zz;
150  zz = obsbias_.norm();
151  zn += zz * zz;
152  return sqrt(zn);
153 }
154 
155 // -----------------------------------------------------------------------------
156 } // namespace oops
157 
158 #endif // OOPS_ASSIMILATION_CONTROLVARIABLE_H_
Control variable.
Geometry< MODEL > Geometry_
ObsSpaces< OBS > ObsSpaces_
State< MODEL > State_
ObsAuxControls< OBS > ObsAuxCtrls_
void print(std::ostream &) const
const ObsAuxCtrls_ & obsVar() const
ControlVariable(const eckit::Configuration &, const Geometry_ &, const ObsSpaces_ &)
The arguments define the number of sub-windows and the resolution.
ObsAuxCtrls_ & obsVar()
Get augmented observation control variable.
static const std::string classname()
void write(const eckit::Configuration &) const
ModelAuxControl< MODEL > ModelAux_
const ModelAux_ & modVar() const
const State_ & state() const
ModelAux_ & modVar()
Get augmented model control variable.
void read(const eckit::Configuration &)
I/O and diagnostics.
ControlVariable & operator=(const ControlVariable &)
State_ & state()
Get state control variable.
Geometry class used in oops; subclass of interface class interface::Geometry.
Auxiliary state related to model (could be e.g. model bias), not used at the moment.
Holds a vector of ObsAuxControl.
State class used in oops; subclass of interface class interface::State.
Definition: FieldL95.h:22
The namespace for the main oops code.