MPAS-JEDI
ModelBiasMPAS.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2017 UCAR
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  */
7 
8 #ifndef MPASJEDI_MODELBIASMPAS_H_
9 #define MPASJEDI_MODELBIASMPAS_H_
10 
11 #include <iostream>
12 #include <string>
13 
14 #include "eckit/config/Configuration.h"
15 #include "eckit/memory/NonCopyable.h"
16 
17 #include "oops/util/ObjectCounter.h"
18 #include "oops/util/Printable.h"
19 
20 namespace mpas {
21  class GeometryMPAS;
22  class ModelBiasIncrementMPAS;
23 
24 /// Model error for the MPAS model.
25 /*!
26  * This class is used to manipulate parameters of the model that
27  * can be estimated in the assimilation. This includes model bias for
28  * example but could be used for other parameters to be estimated.
29  * This is sometimes referred to as augmented state or augmented
30  * control variable in the litterature.
31  * The augmented state is understood here as an augmented 4D state.
32  */
33 
34 // -----------------------------------------------------------------------------
35 
36 class ModelBiasMPAS : public util::Printable,
37  private eckit::NonCopyable,
38  private util::ObjectCounter<ModelBiasMPAS> {
39  public:
40  static const std::string classname() {return "mpas::ModelBiasMPAS";}
41 
42  ModelBiasMPAS(const GeometryMPAS &, const eckit::Configuration &) {}
44  ModelBiasMPAS(const ModelBiasMPAS &, const bool) {}
46 
47  ModelBiasMPAS & operator+=(const ModelBiasIncrementMPAS &) {return *this;}
48 
49 /// I/O and diagnostics
50  void read(const eckit::Configuration &) {}
51  void write(const eckit::Configuration &) const {}
52  double norm() const {return 0.0;}
53 
54  private:
55  void print(std::ostream & os) const {}
56 };
57 
58 // -----------------------------------------------------------------------------
59 
60 } // namespace mpas
61 
62 #endif // MPASJEDI_MODELBIASMPAS_H_
GeometryMPAS handles geometry for MPAS model.
Definition: GeometryMPAS.h:37
Model error for the MPAS model.
Definition: ModelBiasMPAS.h:38
double norm() const
Definition: ModelBiasMPAS.h:52
static const std::string classname()
Definition: ModelBiasMPAS.h:40
void print(std::ostream &os) const
Definition: ModelBiasMPAS.h:55
void write(const eckit::Configuration &) const
Definition: ModelBiasMPAS.h:51
ModelBiasMPAS(const GeometryMPAS &, const ModelBiasMPAS &)
Definition: ModelBiasMPAS.h:43
void read(const eckit::Configuration &)
I/O and diagnostics.
Definition: ModelBiasMPAS.h:50
ModelBiasMPAS(const ModelBiasMPAS &, const bool)
Definition: ModelBiasMPAS.h:44
ModelBiasMPAS(const GeometryMPAS &, const eckit::Configuration &)
Definition: ModelBiasMPAS.h:42
ModelBiasMPAS & operator+=(const ModelBiasIncrementMPAS &)
Definition: ModelBiasMPAS.h:47