OOPS
oops/interface/ModelAuxControl.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_INTERFACE_MODELAUXCONTROL_H_
12 #define OOPS_INTERFACE_MODELAUXCONTROL_H_
13 
14 #include <iostream>
15 #include <memory>
16 #include <string>
17 
18 #include "oops/base/Geometry.h"
19 #include "oops/util/Logger.h"
20 #include "oops/util/ObjectCounter.h"
21 #include "oops/util/Printable.h"
22 #include "oops/util/Timer.h"
23 
24 namespace eckit {
25  class Configuration;
26 }
27 
28 namespace oops {
29 
30 // -----------------------------------------------------------------------------
31 /// \brief Auxiliary state related to model (could be e.g. model bias), not used at the moment.
32 /// \details
33 /// This class is used to manipulate parameters of the model that can be estimated in the
34 /// assimilation. This includes model bias but could be used for other parameters.
35 /// This is sometimes referred to as augmented state or augmented control variable in the
36 /// literature.
37 /// This class calls the model's implementation of ModelAuxControl.
38 
39 // -----------------------------------------------------------------------------
40 
41 template <typename MODEL>
42 class ModelAuxControl : public util::Printable,
43  private util::ObjectCounter<ModelAuxControl<MODEL> > {
44  typedef typename MODEL::ModelAuxControl ModelAuxControl_;
46 
47  public:
48  static const std::string classname() {return "oops::ModelAuxControl";}
49 
50  /// Constructor for specified \p resol and \p conf
51  ModelAuxControl(const Geometry_ & resol, const eckit::Configuration & conf);
52  /// Copies \p other ModelAuxControl, changing its resolution to \p resol
53  ModelAuxControl(const Geometry_ & resol, const ModelAuxControl & other);
54  /// Creates ModelAuxControl with the same structure as \p other.
55  /// Copies \p other if \p copy is true, otherwise creates zero ModelAuxControl
56  explicit ModelAuxControl(const ModelAuxControl &, const bool copy = true);
57  /// Destructor (defined explicitly for timing and tracing)
59 
60  /// const Accessor
61  const ModelAuxControl_ & modelauxcontrol() const {return *aux_;}
62  /// Accessor
64 
65  /// Read this ModelAuxControl from file
66  void read(const eckit::Configuration &);
67  /// Write this ModelAuxControl out to file
68  void write(const eckit::Configuration &) const;
69  /// Norm (used in tests)
70  double norm() const;
71 
72  private:
74  void print(std::ostream &) const;
75  std::unique_ptr<ModelAuxControl_> aux_;
76 };
77 
78 // =============================================================================
79 
80 template<typename MODEL>
82  const eckit::Configuration & conf) : aux_()
83 {
84  Log::trace() << "ModelAuxControl<MODEL>::ModelAuxControl starting" << std::endl;
85  util::Timer timer(classname(), "ModelAuxControl");
86  aux_.reset(new ModelAuxControl_(resol.geometry(), conf));
87  Log::trace() << "ModelAuxControl<MODEL>::ModelAuxControl done" << std::endl;
88 }
89 
90 // -----------------------------------------------------------------------------
91 
92 template<typename MODEL>
94  const ModelAuxControl & other) : aux_()
95 {
96  Log::trace() << "ModelAuxControl<MODEL>::ModelAuxControl interpolated starting" << std::endl;
97  util::Timer timer(classname(), "ModelAuxControl");
98  aux_.reset(new ModelAuxControl_(resol.geometry(), *other.aux_));
99  Log::trace() << "ModelAuxControl<MODEL>::ModelAuxControl interpolated done" << std::endl;
100 }
101 
102 // -----------------------------------------------------------------------------
103 
104 template<typename MODEL>
106  const bool copy) : aux_()
107 {
108  Log::trace() << "ModelAuxControl<MODEL>::ModelAuxControl copy starting" << std::endl;
109  util::Timer timer(classname(), "ModelAuxControl");
110  aux_.reset(new ModelAuxControl_(*other.aux_, copy));
111  Log::trace() << "ModelAuxControl<MODEL>::ModelAuxControl copy done" << std::endl;
112 }
113 
114 // -----------------------------------------------------------------------------
115 
116 template<typename MODEL>
118  Log::trace() << "ModelAuxControl<MODEL>::~ModelAuxControl starting" << std::endl;
119  util::Timer timer(classname(), "~ModelAuxControl");
120  aux_.reset();
121  Log::trace() << "ModelAuxControl<MODEL>::~ModelAuxControl done" << std::endl;
122 }
123 
124 // -----------------------------------------------------------------------------
125 
126 template<typename MODEL>
127 void ModelAuxControl<MODEL>::read(const eckit::Configuration & conf) {
128  Log::trace() << "ModelAuxControl<MODEL>::read starting" << std::endl;
129  util::Timer timer(classname(), "read");
130  aux_->read(conf);
131  Log::trace() << "ModelAuxControl<MODEL>::read done" << std::endl;
132 }
133 
134 // -----------------------------------------------------------------------------
135 
136 template<typename MODEL>
137 void ModelAuxControl<MODEL>::write(const eckit::Configuration & conf) const {
138  Log::trace() << "ModelAuxControl<MODEL>::write starting" << std::endl;
139  util::Timer timer(classname(), "write");
140  aux_->write(conf);
141  Log::trace() << "ModelAuxControl<MODEL>::write done" << std::endl;
142 }
143 
144 // -----------------------------------------------------------------------------
145 
146 template<typename MODEL>
148  Log::trace() << "ModelAuxControl<MODEL>::norm starting" << std::endl;
149  util::Timer timer(classname(), "norm");
150  double zz = aux_->norm();
151  Log::trace() << "ModelAuxControl<MODEL>::norm done" << std::endl;
152  return zz;
153 }
154 
155 // -----------------------------------------------------------------------------
156 
157 template<typename MODEL>
158 void ModelAuxControl<MODEL>::print(std::ostream & os) const {
159  Log::trace() << "ModelAuxControl<MODEL>::print starting" << std::endl;
160  util::Timer timer(classname(), "print");
161  os << *aux_;
162  Log::trace() << "ModelAuxControl<MODEL>::print done" << std::endl;
163 }
164 
165 // -----------------------------------------------------------------------------
166 
167 } // namespace oops
168 
169 #endif // OOPS_INTERFACE_MODELAUXCONTROL_H_
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.
ModelAuxControl(const Geometry_ &resol, const eckit::Configuration &conf)
Constructor for specified resol and conf.
MODEL::ModelAuxControl ModelAuxControl_
const ModelAuxControl_ & modelauxcontrol() const
const Accessor
double norm() const
Norm (used in tests)
ModelAuxControl & operator=(const ModelAuxControl &)
void read(const eckit::Configuration &)
Read this ModelAuxControl from file.
static const std::string classname()
~ModelAuxControl()
Destructor (defined explicitly for timing and tracing)
void write(const eckit::Configuration &) const
Write this ModelAuxControl out to file.
void print(std::ostream &) const
ModelAuxControl_ & modelauxcontrol()
Accessor.
std::unique_ptr< ModelAuxControl_ > aux_
const Geometry_ & geometry() const
Definition: FieldL95.h:22
The namespace for the main oops code.