OOPS
ErrorCovarianceL95.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 LORENZ95_ERRORCOVARIANCEL95_H_
12 #define LORENZ95_ERRORCOVARIANCEL95_H_
13 
14 #include <unsupported/Eigen/FFT>
15 #include <ostream>
16 #include <string>
17 #include <vector>
18 
19 #include <boost/noncopyable.hpp>
20 
21 #include "eckit/config/Configuration.h"
23 #include "oops/util/DateTime.h"
24 #include "oops/util/ObjectCounter.h"
25 #include "oops/util/parameters/Parameters.h"
26 #include "oops/util/parameters/RequiredParameter.h"
27 #include "oops/util/Printable.h"
28 
29 // Forward declarations
30 namespace oops {
31  class Variables;
32 }
33 
34 namespace lorenz95 {
35  class IncrementL95;
36  class StateL95;
37  class Resolution;
38 
39  struct L95Traits;
40 
42  OOPS_CONCRETE_PARAMETERS(ErrorCovarianceL95Parameters,
43  ModelSpaceCovarianceParametersBase<L95Traits>)
44 
45  public:
46  oops::RequiredParameter<util::DateTime> date{"date", this};
47  oops::RequiredParameter<double> standardDeviation{"standard_deviation", this};
48  oops::RequiredParameter<double> lengthScale{"length_scale", this};
49 };
50 
51 /// Background error covariance matrix for Lorenz 95 model.
52 /*!
53  * Gaussian background error covariance matrix for Lorenz 95 model.
54  */
55 
56 // -----------------------------------------------------------------------------
57 class ErrorCovarianceL95 : public util::Printable,
58  private boost::noncopyable,
59  private util::ObjectCounter<ErrorCovarianceL95> {
60  public:
62 
63  static const std::string classname() {return "lorenz95::ErrorCovarianceL95";}
64 
66  const ErrorCovarianceL95Parameters &, const StateL95 &, const StateL95 &);
68 
69  void multiply(const IncrementL95 &, IncrementL95 &) const;
70  void inverseMultiply(const IncrementL95 &, IncrementL95 &) const;
71  void randomize(IncrementL95 &) const;
72 
73  private:
74  void print(std::ostream &) const;
75  const util::DateTime time_;
76  const double sigmab_;
77  const double rscale_;
78  unsigned int resol_;
79  unsigned int size_;
80  std::vector<double> bcoefs_;
81  mutable Eigen::FFT<double> fft_;
82 };
83 // -----------------------------------------------------------------------------
84 } // namespace lorenz95
85 
86 #endif // LORENZ95_ERRORCOVARIANCEL95_H_
Background error covariance matrix for Lorenz 95 model.
std::vector< double > bcoefs_
void print(std::ostream &) const
static const std::string classname()
void multiply(const IncrementL95 &, IncrementL95 &) const
ErrorCovarianceL95Parameters Parameters_
void inverseMultiply(const IncrementL95 &, IncrementL95 &) const
ErrorCovarianceL95(const Resolution &, const oops::Variables &, const ErrorCovarianceL95Parameters &, const StateL95 &, const StateL95 &)
void randomize(IncrementL95 &) const
oops::RequiredParameter< double > lengthScale
OOPS_CONCRETE_PARAMETERS(ErrorCovarianceL95Parameters, ModelSpaceCovarianceParametersBase< L95Traits >) public oops::RequiredParameter< double > standardDeviation
Increment Class: Difference between two states.
Definition: IncrementL95.h:58
Handles resolution.
Definition: Resolution.h:43
L95 model state.
Definition: StateL95.h:53
Base class for classes storing parameters of a particular model-space error covariance implementation...
The namespace for the L95 model.
The namespace for the main oops code.