12 #include "eckit/config/Configuration.h"
21 #include "oops/util/Duration.h"
22 #include "oops/util/Logger.h"
32 : resol_(resol), f_(params.f),
34 dt_(tstep_.toSeconds()/432000.0), vars_({
"x"})
36 oops::Log::info() << *
this << std::endl;
37 oops::Log::trace() <<
"ModelL95::ModelL95 created" << std::endl;
43 oops::Log::trace() <<
"ModelL95::~ModelL95 destructed" << std::endl;
85 const double zt = 1.0/6.0;
91 #ifdef __INTEL_COMPILER
92 #pragma optimize("", off)
99 for (
int jj = 0; jj < nn; ++jj) {
103 if (jm2 < 0) jm2 += nn;
104 if (jm1 < 0) jm1 += nn;
105 if (jp1 >= nn) jp1 -= nn;
106 const double dxdt = -xx[jm2] * xx[jm1] + xx[jm1] * xx[jp1] - xx[jj] +
f_ - bias;
110 #ifdef __INTEL_COMPILER
111 #pragma optimize("", on)
117 os <<
"ModelL95: resol = " <<
resol_ <<
", f = " <<
f_ <<
", tstep = " <<
tstep_;
Class to represent fields for the L95 model.
void axpy(const double &, const FieldL95 &)
Model error for Lorenz 95 model.
const double & bias() const
const util::Duration tstep_
void finalize(StateL95 &) const
void initialize(StateL95 &) const
void print(std::ostream &) const
Print; used for logging.
void tendencies(const FieldL95 &, const double &, FieldL95 &) const
void step(StateL95 &, const ModelBias &) const
void stepRK(FieldL95 &, const ModelBias &, ModelTrajectory &) const
ModelL95(const Resolution &, const ModelL95Parameters &)
void set(const FieldL95 &)
Save trajectory.
const FieldL95 & getField() const
const util::DateTime & validTime() const
A subclass of ModelFactory able to create instances of T (a concrete subclass of interface::ModelBase...
The namespace for the L95 model.
static oops::interface::ModelMaker< L95Traits, ModelL95 > makermodel_("L95")