18 #include "eckit/config/Configuration.h"
19 #include "eckit/exception/Exceptions.h"
24 #include "oops/util/abor1_cpp.h"
25 #include "oops/util/Logger.h"
26 #include "oops/util/Random.h"
32 : resol_(resol.npoints()), x_(resol_)
35 for (
int jj = 0; jj <
resol_; ++jj)
x_[jj] = 0.0;
39 : resol_(resol.npoints()), x_(resol_)
43 for (
int jj = 0; jj <
resol_; ++jj)
x_[jj] = other.
x_[jj];
47 : resol_(other.resol_), x_(resol_)
51 for (
int jj = 0; jj <
resol_; ++jj)
x_[jj] = other.
x_[jj];
53 for (
int jj = 0; jj <
resol_; ++jj)
x_[jj] = 0.0;
58 for (
int jj = 0; jj <
resol_; ++jj)
x_[jj] = 0.0;
62 for (
int jj = 0; jj <
resol_; ++jj)
x_[jj] = 1.0;
67 std::vector<int> ixdir(config.getIntVector(
"ixdir"));
70 ASSERT(ixdir.size() > 0);
71 for (
unsigned int jj = 0; jj < ixdir.size(); ++jj) {
72 ASSERT(ixdir[jj] <
resol_);
76 for (
int jj = 0; jj <
resol_; ++jj)
x_[jj] = 0.0;
77 for (
unsigned int jj = 0; jj < ixdir.size(); ++jj)
x_[ixdir[jj]] = 1.0;
81 for (
int jj = 0; jj <
resol_; ++jj)
x_[jj] = 0.0;
82 if (conf.has(
"mean")) {
83 const double zz = conf.getDouble(
"mean");
84 for (
int jj = 0; jj <
resol_; ++jj)
x_[jj] = zz;
86 if (conf.has(
"sinus")) {
87 const double zz = conf.getDouble(
"sinus");
88 const double pi = std::acos(-1.0);
89 const double dx = 2.0 *
pi /
static_cast<double>(
resol_);
90 for (
int jj = 0; jj < resol_; ++jj) x_[jj] += zz * std::sin(static_cast<double>(jj) * dx);
92 if (conf.has(
"dirac")) {
93 const int ii = conf.getInt(
"dirac");
96 oops::Log::trace() <<
"FieldL95::generate " <<
x_[28] <<
", " <<
x_[29] << std::endl;
101 for (
int jj = 0; jj <
resol_; ++jj)
x_[jj] = rhs.
x_[jj];
107 for (
int jj = 0; jj <
resol_; ++jj)
x_[jj] += rhs.
x_[jj];
113 for (
int jj = 0; jj <
resol_; ++jj)
x_[jj] -= rhs.
x_[jj];
118 for (
int jj = 0; jj <
resol_; ++jj)
x_[jj] *= fact;
125 for (
int jj = 0; jj <
resol_; ++jj) {
126 x_[jj] = x1.
x_[jj] - x2.
x_[jj];
132 for (
int jj = 0; jj <
resol_; ++jj)
x_[jj] += zz * rhs.
x_[jj];
138 for (
int jj = 0; jj <
resol_; ++jj) zz +=
x_[jj] * other.
x_[jj];
144 for (
int jj = 0; jj <
resol_; ++jj)
x_[jj] *= rhs.
x_[jj];
148 util::NormalDistribution<double> xx(
resol_, 0.0, 1.0, 1);
149 for (
int jj = 0; jj <
resol_; ++jj)
x_[jj] = xx[jj];
153 fin.precision(std::numeric_limits<double>::digits10);
154 for (
int jj = 0; jj < resol_; ++jj) fin >>
x_[jj];
158 fout.precision(std::numeric_limits<double>::digits10);
159 for (
int jj = 0; jj <
resol_; ++jj) fout <<
x_[jj] <<
" ";
164 for (
int jj = 0; jj <
resol_; ++jj) zz +=
x_[jj] *
x_[jj];
174 vect.insert(vect.end(),
x_.begin(),
x_.end());
178 for (
int ii = 0; ii <
resol_; ++ii) {
179 x_[ii] = vect[index];
188 for (
int jj = 0; jj <
resol_; ++jj) {
189 if (
x_[jj] < zmin) zmin =
x_[jj];
190 if (
x_[jj] > zmax) zmax =
x_[jj];
194 os <<
" Min=" << zmin <<
", Max=" << zmax <<
", Average=" << zavg;
Class to represent fields for the L95 model.
FieldL95(const Resolution &)
Constructors and basic operators.
void generate(const eckit::Configuration &)
FieldL95 & operator-=(const FieldL95 &)
FieldL95 & operator+=(const FieldL95 &)
void write(std::ofstream &) const
void diff(const FieldL95 &, const FieldL95 &)
void deserialize(const std::vector< double > &, size_t &) override
void axpy(const double &, const FieldL95 &)
void schur(const FieldL95 &)
void zero()
Linear algebra.
FieldL95 & operator*=(const double &)
FieldL95 & operator=(const FieldL95 &)
void dirac(const eckit::Configuration &)
double dot_product_with(const FieldL95 &) const
void serialize(std::vector< double > &) const override
void read(std::ifstream &)
Utilities.
size_t serialSize() const override
Serialize and deserialize.
void print(std::ostream &) const override
The namespace for the L95 model.
real(kind_real), parameter, public pi
Pi.