13 #include "eckit/config/LocalConfiguration.h"
14 #include "eckit/exception/Exceptions.h"
16 #include "oops/util/abor1_cpp.h"
17 #include "oops/util/DateTime.h"
18 #include "oops/util/Duration.h"
19 #include "oops/util/Logger.h"
37 : resol_(resol), tstep_(params.tstep),
38 dt_(tstep_.toSeconds()/432000.0), traj_(),
39 lrmodel_(resol_, params.trajectory),
42 oops::Log::info() <<
"TLML95: resol = " <<
resol_ <<
", tstep = " <<
tstep_ << std::endl;
43 oops::Log::trace() <<
"TLML95::TLML95 created" << std::endl;
50 oops::Log::trace() <<
"TLML95::~TLML95 destructed" << std::endl;
64 if (itra ==
traj_.end()) {
65 oops::Log::error() <<
"TLML95: trajectory not available at time " << tt << std::endl;
66 ABORT(
"TLML95: trajectory not available");
103 const double zt = 1.0/6.0;
116 const double zt = 1.0/6.0;
144 #ifdef __INTEL_COMPILER
145 #pragma optimize("", off)
150 for (
int jj = 0; jj < nn; ++jj) {
154 if (jm2 < 0) jm2 += nn;
155 if (jm1 < 0) jm1 += nn;
156 if (jp1 >= nn) jp1 -= nn;
157 const double dxdt = - xx[jm2] * xtraj[jm1] - xtraj[jm2] * xx[jm1]
158 + xx[jm1] * xtraj[jp1] + xtraj[jm1] * xx[jp1]
168 for (
int jj = 0; jj < nn; ++jj) {
172 if (jm2 < 0) jm2 += nn;
173 if (jm1 < 0) jm1 += nn;
174 if (jp1 >= nn) jp1 -= nn;
175 const double dxdt =
dt_ * dx[jj];
176 xx[jm2] -= dxdt * xtraj[jm1];
177 xx[jm1] -= dxdt * xtraj[jm2];
178 xx[jm1] += dxdt * xtraj[jp1];
179 xx[jp1] += dxdt * xtraj[jm1];
184 #ifdef __INTEL_COMPILER
185 #pragma optimize("", on)
189 os <<
"TLML95: resol = " <<
resol_ <<
", tstep = " <<
tstep_ << std::endl;
190 os <<
"L95 Model Trajectory, nstep=" <<
traj_.size() << std::endl;
191 typedef std::map< util::DateTime, ModelTrajectory * >::const_iterator
trajICst;
192 if (
traj_.size() > 0) {
193 os <<
"L95 Model Trajectory: times are:";
195 os <<
" " << jtra->first;
Class to represent fields for the L95 model.
void axpy(const double &, const FieldL95 &)
void zero()
Linear algebra.
Increment Class: Difference between two states.
const util::DateTime & validTime() const
const FieldL95 & getField() const
Access to data.
Model error for Lorenz 95 model.
void stepRK(FieldL95 &, const ModelBias &, ModelTrajectory &) const
const FieldL95 & get(const int) const
Get trajectory.
const FieldL95 & getField() const
const util::DateTime & validTime() const
const ModelTrajectory * getTrajectory(const util::DateTime &) const
void setTrajectory(const StateL95 &, StateL95 &, const ModelBias &) override
Model trajectory computation.
std::map< util::DateTime, ModelTrajectory * > traj_
void stepTL(IncrementL95 &, const ModelBiasCorrection &) const override
void print(std::ostream &) const override
Print, used in logging.
void initializeAD(IncrementL95 &) const override
void finalizeAD(IncrementL95 &) const override
void stepAD(IncrementL95 &, ModelBiasCorrection &) const override
void initializeTL(IncrementL95 &) const override
Run TLM and its adjoint.
void tendenciesTL(const FieldL95 &, const double &, const FieldL95 &, FieldL95 &) const
void tendenciesAD(FieldL95 &, double &, const FieldL95 &, const FieldL95 &) const
const util::Duration tstep_
std::map< util::DateTime, ModelTrajectory * >::const_iterator trajICst
TLML95(const Resolution &, const Parameters_ &)
std::map< util::DateTime, ModelTrajectory * >::iterator trajIter
void finalizeTL(IncrementL95 &) const override
A subclass of LinearModelFactory able to create instances of T (a concrete subclass of interface::Lin...
The namespace for the L95 model.
static oops::interface::LinearModelMaker< L95Traits, TLML95 > makerTLML95_("L95TLM")