16 #include "eckit/config/Configuration.h"
17 #include "eckit/exception/Exceptions.h"
18 #include "oops/util/DateTime.h"
19 #include "oops/util/Duration.h"
26 tau_ = util::Duration(config.getString(
"cutoff"));
32 const util::DateTime & end,
33 const util::Duration & dt) {
34 const double pi = 4.0*std::atan(1.0);
35 const util::Duration window(end-bgn);
36 const int nstep = window.toSeconds() / dt.toSeconds();
37 ASSERT(window.toSeconds() == dt.toSeconds()*nstep);
39 const int M = nstep/2;
40 const int N = 2*M + 1;
42 const int tt =
tau_.toSeconds() / dt.toSeconds();
43 ASSERT(
tau_.toSeconds() == dt.toSeconds()*tt);
45 const double thetas = 2.0 *
pi / tt;
46 const double x0 = 1.0 / std::cos(thetas/2.0);
47 const double rr = 1.0 / std::cosh(nstep * std::acosh(x0));
49 std::vector<double> w(M+1);
50 for (
int n = 0; n <= M; ++n) {
51 double tn = 2.0 *
pi * n / N;
53 for (
int m = 1; m <= M; ++m) {
54 double xx = x0 * std::cos(
pi * m / N);
58 for (
int kk = 2; kk <= 2 * M; ++kk) {
59 t2m = 2.0 * xx * tnm1 - tnm2;
63 sum += t2m * std::cos(m*tn);
65 w[n] = (1.0 + 2.0 * rr * sum) / N;
68 std::map< util::DateTime, double > weights;
69 double checksum = 0.0;
70 util::DateTime now(bgn);
71 for (
int jj = -M; jj <= M; ++jj) {
77 ASSERT(now == end+dt);
78 ASSERT(std::abs(checksum-1.0) < 1.0e-8);
std::map< util::DateTime, double > setWeights(const util::DateTime &, const util::DateTime &, const util::Duration &)
DolphChebyshev(const eckit::Configuration &)
The namespace for the main oops code.
real(kind_real), parameter, public pi
Pi.