OOPS
GomQG.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 "model/GomQG.h"
12 
13 #include <iomanip>
14 
15 #include "eckit/config/Configuration.h"
16 #include "model/LocationsQG.h"
17 #include "model/ObsSpaceQG.h"
18 #include "model/QgFortran.h"
19 #include "oops/base/Variables.h"
20 #include "oops/util/Logger.h"
21 
22 namespace qg {
23 
24 // -----------------------------------------------------------------------------
25 GomQG::GomQG(const LocationsQG & locs, const oops::Variables & vars,
26  const std::vector<size_t> & sizes):
27  vars_(vars)
28 {
29  // gom_setup just creates and allocates the GeoVaLs object without filling
30  // in values
32 }
33 // -----------------------------------------------------------------------------
34 /*! QG GeoVaLs Constructor with Config */
35 
36  GomQG::GomQG(const eckit::Configuration & config,
37  const ObsSpaceQG & ospace, const oops::Variables & vars):
38  vars_(vars)
39 {
42 }
43 // -----------------------------------------------------------------------------
44 // Copy constructor
45 GomQG::GomQG(const GomQG & other):
46  vars_(other.vars_)
47 {
50 }
51 // -----------------------------------------------------------------------------
54 }
55 // -----------------------------------------------------------------------------
56 double GomQG::rms() const {
57  double zz;
59  return zz;
60 }
61 // -----------------------------------------------------------------------------
62 double GomQG::normalizedrms(const GomQG & rhs) const {
63  GomQG temp_GomQG(*this);
64  qg_gom_divide_f90(temp_GomQG.keyGom_, rhs.keyGom_);
65  return temp_GomQG.rms();
66 }
67 // -----------------------------------------------------------------------------
68 void GomQG::zero() {
70 }
71 // -----------------------------------------------------------------------------
72 void GomQG::random() {
74 }
75 // -----------------------------------------------------------------------------
76 GomQG & GomQG::operator=(const GomQG & rhs) {
77  const int keyGomRhs = rhs.keyGom_;
78  qg_gom_copy_f90(keyGom_, keyGomRhs);
79  return *this;
80 }
81 // -----------------------------------------------------------------------------
82 GomQG & GomQG::operator*=(const double & zz) {
84  return *this;
85 }
86 // -----------------------------------------------------------------------------
87 GomQG & GomQG::operator+=(const GomQG & other) {
89  return *this;
90 }
91 // -----------------------------------------------------------------------------
92 GomQG & GomQG::operator-=(const GomQG & other) {
94  return *this;
95 }
96 // -----------------------------------------------------------------------------
97 GomQG & GomQG::operator*=(const GomQG & other) {
99  return *this;
100 }
101 // -----------------------------------------------------------------------------
102 double GomQG::dot_product_with(const GomQG & other) const {
103  double zz;
104  qg_gom_dotprod_f90(keyGom_, other.keyGom_, zz);
105  return zz;
106 }
107 // -----------------------------------------------------------------------------
108 void GomQG::read(const eckit::Configuration & config) {
109  qg_gom_read_file_f90(keyGom_, config);
110 }
111 // -----------------------------------------------------------------------------
112 void GomQG::write(const eckit::Configuration & config) const {
114 }
115 // -----------------------------------------------------------------------------
116 void GomQG::print(std::ostream & os) const {
117  int nobs;
118  double zmin, zmax, zrms;
119  qg_gom_stats_f90(keyGom_, nobs, zmin, zmax, zrms);
120  std::ios_base::fmtflags f(os.flags());
121  os << " nobs= " << nobs << std::scientific << std::setprecision(4)
122  << " Min=" << std::setw(12) << zmin
123  << ", Max=" << std::setw(12) << zmax
124  << ", RMS=" << std::setw(12) << zrms;
125  os.flags(f);
126 
127  // If the min value across all variables is positive, then this may be an
128  // error measurement. If so, print the location and variable where the
129  // maximum occurs to the debug stream, for use in debugging
130 
131  if (zmin >= 0.0) {
132  double mxval;
133  int iloc;
134  oops::Variables maxvar;
135 
136  qg_gom_maxloc_f90(keyGom_, mxval, iloc, maxvar);
137 
138  oops::Log::debug() << "GomQG: Maximum Value = " << std::setprecision(4)
139  << mxval << " at location = " << iloc
140  << " and variable = " << maxvar << std::endl;
141  }
142 }
143 // -----------------------------------------------------------------------------
144 } // namespace qg
GomQG class to handle local model values for QG model.
Definition: GomQG.h:35
oops::Variables vars_
Definition: GomQG.h:67
double dot_product_with(const GomQG &) const
Definition: GomQG.cc:102
~GomQG()
Definition: GomQG.cc:52
void zero()
Definition: GomQG.cc:68
double normalizedrms(const GomQG &) const
Definition: GomQG.cc:62
void print(std::ostream &) const
Definition: GomQG.cc:116
void random()
Definition: GomQG.cc:72
void write(const eckit::Configuration &) const
Definition: GomQG.cc:112
GomQG & operator*=(const double &)
Definition: GomQG.cc:82
GomQG & operator=(const GomQG &)
Definition: GomQG.cc:76
double rms() const
Definition: GomQG.cc:56
GomQG()
Definition: GomQG.h:44
void read(const eckit::Configuration &)
Definition: GomQG.cc:108
F90gom keyGom_
Definition: GomQG.h:66
GomQG & operator-=(const GomQG &)
Definition: GomQG.cc:92
GomQG & operator+=(const GomQG &)
Definition: GomQG.cc:87
LocationsQG class to handle locations for QG model.
Definition: LocationsQG.h:36
ObsSpace for QG model.
Definition: ObsSpaceQG.h:81
The namespace for the qg model.
void qg_gom_write_file_f90(const F90gom &, const eckit::Configuration &)
void qg_gom_setup_f90(F90gom &, const LocationsQG &, const oops::Variables &)
void qg_gom_zero_f90(const F90gom &)
void qg_gom_read_file_f90(const F90gom &, const eckit::Configuration &)
void qg_gom_create_f90(F90gom &, const oops::Variables &)
void qg_gom_copy_f90(const F90gom &, const F90gom &)
void qg_gom_dotprod_f90(const F90gom &, const F90gom &, double &)
void qg_gom_diff_f90(const F90gom &, const F90gom &)
void qg_gom_random_f90(const F90gom &)
void qg_gom_stats_f90(const F90gom &, int &, double &, double &, double &)
void qg_gom_add_f90(const F90gom &, const F90gom &)
void qg_gom_schurmult_f90(const F90gom &, const F90gom &)
void qg_gom_mult_f90(const F90gom &, const double &)
void qg_gom_rms_f90(const F90gom &, double &)
void qg_gom_divide_f90(const F90gom &, const F90gom &)
void qg_gom_delete_f90(F90gom &)
void qg_gom_maxloc_f90(const F90gom &, double &, int &, const oops::Variables &)