OOPS
GomL95.cc
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 #include "lorenz95/GomL95.h"
12 
13 #include <cmath>
14 #include <cstdlib>
15 #include <fstream>
16 #include <iomanip>
17 #include <limits>
18 
19 #include "eckit/config/Configuration.h"
20 #include "lorenz95/LocsL95.h"
21 #include "lorenz95/ObsTable.h"
22 #include "oops/util/abor1_cpp.h"
23 #include "oops/util/Logger.h"
24 #include "oops/util/Random.h"
25 
26 namespace oops {
27 class Variables;
28 }
29 
30 namespace lorenz95 {
31 
32 // -----------------------------------------------------------------------------
33 GomL95::GomL95(const LocsL95 & locs, const oops::Variables &, const std::vector<size_t> &)
34  : size_(locs.size()), locval_(size_)
35 {
36  oops::Log::trace() << "GomL95::GomL95 starting " << std::endl;
37  for (size_t jj = 0; jj < size_; ++jj) locval_[jj] = locs[jj];
38 }
39 // -----------------------------------------------------------------------------
40 /*! Constructor with Configuration */
41 GomL95::GomL95(const eckit::Configuration & conf,
42  const ObsTable &, const oops::Variables &)
43  : size_(0), locval_()
44 {
45  this->read(conf);
46 }
47 // -----------------------------------------------------------------------------
48 GomL95 & GomL95::operator*=(const double & zz) {
49  for (size_t jj = 0; jj < size_; ++jj) locval_[jj] *= zz;
50  return *this;
51 }
52 // -----------------------------------------------------------------------------
54 {
55  for (size_t jj = 0; jj < size_; ++jj) locval_[jj] += rhs.locval_[jj];
56  return *this;
57 }
58 // -----------------------------------------------------------------------------
60 {
61  for (size_t jj = 0; jj < size_; ++jj) locval_[jj] -= rhs.locval_[jj];
62  return *this;
63 }
64 // -----------------------------------------------------------------------------
66 {
67  for (size_t jj = 0; jj < size_; ++jj) locval_[jj] *= rhs.locval_[jj];
68  return *this;
69 }
70 // -----------------------------------------------------------------------------
71 void GomL95::zero() {
72  for (size_t jj = 0; jj < size_; ++jj) locval_[jj] = 0.0;
73 }
74 // -----------------------------------------------------------------------------
75 double GomL95::rms() const {
76  double xnorm(0.0);
77  for (size_t jj = 0; jj < size_; ++jj) xnorm += locval_[jj] * locval_[jj];
78  return sqrt(xnorm/static_cast<double>(size_));
79 }
80 // -----------------------------------------------------------------------------
81 double GomL95::normalizedrms(const GomL95 & rhs) const {
82  GomL95 temp_gv(*this);
83  for (size_t jj = 0; jj < size_; ++jj) temp_gv.locval_[jj] /= rhs.locval_[jj];
84  return temp_gv.rms();
85 }
86 // -----------------------------------------------------------------------------
88  util::NormalDistribution<double> x(size_, 0.0, 1.0, 5);
89  for (size_t jj = 0; jj < size_; ++jj) locval_[jj] = x[jj];
90 }
91 // -----------------------------------------------------------------------------
92 double GomL95::dot_product_with(const GomL95 & gom) const {
93  double zz = 0.0;
94  for (size_t jj = 0; jj < size_; ++jj) zz += locval_[jj] * gom.locval_[jj];
95  return zz;
96 }
97 // -----------------------------------------------------------------------------
98 void GomL95::read(const eckit::Configuration & conf) {
99  const std::string filename(conf.getString("filename"));
100  oops::Log::trace() << "GomL95::read opening " << filename << std::endl;
101  std::ifstream fin(filename.c_str());
102  if (!fin.is_open()) ABORT("GomL95::read: Error opening file: " + filename);
103 
104  size_t size;
105  fin >> size;
106 
107  if (size_ != size) {
108  size_ = size;
109  locval_.resize(size_);
110  }
111 
112  for (size_t jj = 0; jj < size_; ++jj) fin >> locval_[jj];
113 
114  fin.close();
115  oops::Log::trace() << "GomL95::read: file closed." << std::endl;
116 }
117 // -----------------------------------------------------------------------------
118 void GomL95::write(const eckit::Configuration & conf) const {
119  const std::string filename(conf.getString("filename"));
120  oops::Log::trace() << "GomL95::write opening " << filename << std::endl;
121  std::ofstream fout(filename.c_str());
122  if (!fout.is_open()) ABORT("GomL95::write: Error opening file: " + filename);
123 
124  fout << size_ << std::endl;
125  fout << std::endl;
126  fout.precision(std::numeric_limits<double>::digits10);
127  for (size_t jj = 0; jj < size_; ++jj) fout << locval_[jj] << " ";
128  fout << std::endl;
129 
130  fout.close();
131  oops::Log::trace() << "GomL95::write file closed." << std::endl;
132 }
133 // -----------------------------------------------------------------------------
134 void GomL95::print(std::ostream & os) const {
135  if (size_ > 0) {
136  double zmin = locval_[0];
137  double zmax = locval_[0];
138  double zavg = 0.0;
139  for (size_t jj = 0; jj < size_; ++jj) {
140  if (locval_[jj] < zmin) zmin = locval_[jj];
141  if (locval_[jj] > zmax) zmax = locval_[jj];
142  zavg += locval_[jj];
143  }
144  zavg /= size_;
145  os << size_ << "values, Min=" << zmin << ", Max=" << zmax << ", Average=" << zavg;
146  } else {
147  os << " No observations";
148  }
149 }
150 // -----------------------------------------------------------------------------
151 
152 } // namespace lorenz95
GomL95 class to handle locations for L95 model.
Definition: GomL95.h:33
void write(const eckit::Configuration &) const
Definition: GomL95.cc:118
size_t size() const
Definition: GomL95.h:54
void print(std::ostream &) const
Definition: GomL95.cc:134
void zero()
Definition: GomL95.cc:71
std::vector< double > locval_
Definition: GomL95.h:60
double rms() const
Definition: GomL95.cc:75
size_t size_
Definition: GomL95.h:59
GomL95 & operator+=(const GomL95 &)
Definition: GomL95.cc:53
void random()
Definition: GomL95.cc:87
GomL95 & operator*=(const double &)
Definition: GomL95.cc:48
double dot_product_with(const GomL95 &) const
Definition: GomL95.cc:92
GomL95 & operator-=(const GomL95 &)
Definition: GomL95.cc:59
GomL95(const LocsL95 &, const oops::Variables &, const std::vector< size_t > &)
Definition: GomL95.cc:33
void read(const eckit::Configuration &)
Definition: GomL95.cc:98
double normalizedrms(const GomL95 &) const
Definition: GomL95.cc:81
LocsL95 class to handle locations for L95 model.
Definition: LocsL95.h:32
A Simple Observation Data Handler.
Definition: ObsTable.h:67
The namespace for the L95 model.
The namespace for the main oops code.