OOPS
l95/src/lorenz95/AnalyticInit.cc
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2020 UCAR
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  */
7 
9 
10 #include <cmath>
11 
12 #include "lorenz95/GomL95.h"
13 #include "lorenz95/LocsL95.h"
14 
15 #include "oops/util/Logger.h"
16 
17 namespace lorenz95 {
18 
19 // -----------------------------------------------------------------------------
20 AnalyticInit::AnalyticInit(const eckit::Configuration & config): config_(config)
21 { }
22 // -----------------------------------------------------------------------------
23 /*! GomL95 analytic initialization */
25  GomL95 & geovals) const {
26  oops::Log::trace() << "AnalyticInit::fillGeoVaLs " << std::endl;
27  const size_t nlocs = geovals.size();
28  // analytic init for testing interpolation
29  // mean value; default is zero.
30  const double mean = config_.getDouble("mean", 0.0);
31  for (size_t jj = 0; jj < nlocs; ++jj) geovals[jj] = mean;
32  // add a sinus function if specified in yaml
33  if (config_.has("sinus")) {
34  const double zz = config_.getDouble("sinus");
35  for (size_t jj = 0; jj < nlocs; ++jj)
36  geovals[jj] += zz * std::sin(2.0*M_PI*locs[jj]);
37  }
38  if (!config_.has("mean") && !config_.has("sinus")) {
39  oops::Log::warning() << "Using default analytic init (all zeros)" << std::endl;
40  }
41 
42  oops::Log::trace() << "GomL95::GomL95 analytic init finished" << std::endl;
43 }
44 // -----------------------------------------------------------------------------
45 } // namespace lorenz95
const eckit::LocalConfiguration config_
AnalyticInit(const eckit::Configuration &)
void fillGeoVaLs(const LocsL95 &, GomL95 &) const
GomL95 analytic initialization.
GomL95 class to handle locations for L95 model.
Definition: GomL95.h:33
size_t size() const
Definition: GomL95.h:54
LocsL95 class to handle locations for L95 model.
Definition: LocsL95.h:32
The namespace for the L95 model.