OOPS
LocalizationMatrixL95.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2009-2016 ECMWF.
3  * (C) Copyright 2020-2020 UCAR
4  *
5  * This software is licensed under the terms of the Apache Licence Version 2.0
6  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
7  * In applying this licence, ECMWF does not waive the privileges and immunities
8  * granted to it by virtue of its status as an intergovernmental organisation nor
9  * does it submit to any jurisdiction.
10  */
11 
12 #ifndef LORENZ95_LOCALIZATIONMATRIXL95_H_
13 #define LORENZ95_LOCALIZATIONMATRIXL95_H_
14 
15 #include <ostream>
16 #include <string>
17 #include <vector>
18 #include <boost/noncopyable.hpp>
19 
20 #include "eckit/config/Configuration.h"
22 #include "oops/util/DateTime.h"
23 
24 #include "lorenz95/L95Traits.h"
25 
26 // Forward declarations
27 namespace lorenz95 {
28  class IncrementL95;
29 
30 /// Localization matrix for Lorenz 95 model.
31 
32 // -----------------------------------------------------------------------------
33 class LocalizationMatrixL95: public oops::interface::LocalizationBase<lorenz95::L95Traits> {
34  public:
35  static const std::string classname() {return "lorenz95::LocalizationMatrixL95";}
36 
37  LocalizationMatrixL95(const Resolution &, const eckit::Configuration &);
38  void randomize(IncrementL95 &) const override;
39  void multiply(IncrementL95 &) const override;
40 
41  private:
42  void print(std::ostream &) const override;
43  const unsigned int resol_;
44  const double rscale_;
45  std::vector<double> coefs_;
46 };
47 // -----------------------------------------------------------------------------
48 } // namespace lorenz95
49 
50 #endif // LORENZ95_LOCALIZATIONMATRIXL95_H_
Increment Class: Difference between two states.
Definition: IncrementL95.h:58
Localization matrix for Lorenz 95 model.
LocalizationMatrixL95(const Resolution &, const eckit::Configuration &)
void print(std::ostream &) const override
static const std::string classname()
void multiply(IncrementL95 &) const override
void randomize(IncrementL95 &) const override
Handles resolution.
Definition: Resolution.h:43
The namespace for the L95 model.