OOPS
ObservationL95.cc
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2009-2016 ECMWF.
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  * In applying this licence, ECMWF does not waive the privileges and immunities
7  * granted to it by virtue of its status as an intergovernmental organisation nor
8  * does it submit to any jurisdiction.
9  */
10 
12 
13 #include <string>
14 #include <vector>
15 
16 #include "eckit/config/Configuration.h"
17 #include "lorenz95/GomL95.h"
18 #include "lorenz95/LocsL95.h"
19 #include "lorenz95/ObsBias.h"
20 #include "lorenz95/ObsDiags1D.h"
21 #include "lorenz95/ObsVec1D.h"
22 #include "oops/base/Variables.h"
23 #include "oops/util/Logger.h"
24 
25 // -----------------------------------------------------------------------------
26 namespace lorenz95 {
27 // -----------------------------------------------------------------------------
28 
30  : obsdb_(ot), inputs_(std::vector<std::string>{"x"})
31 {}
32 
33 // -----------------------------------------------------------------------------
34 
36 
37 // -----------------------------------------------------------------------------
38 
39 void ObservationL95::simulateObs(const GomL95 & gom, ObsVec1D & ovec,
40  const ObsBias & bias, ObsVec1D &, ObsDiags1D &) const {
41  for (size_t jj = 0; jj < gom.size(); ++jj) {
42  ovec[jj] = gom[jj] + bias.value();
43  }
44 }
45 
46 // -----------------------------------------------------------------------------
47 
48 std::unique_ptr<LocsL95> ObservationL95::locations() const {
49  return std::unique_ptr<LocsL95>(new LocsL95(obsdb_.locations(), obsdb_.times()));
50 }
51 
52 // -----------------------------------------------------------------------------
53 
54 void ObservationL95::print(std::ostream & os) const {
55  os << "Lorenz 95: Identity obs operator";
56 }
57 
58 // -----------------------------------------------------------------------------
59 
60 } // namespace lorenz95
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
Class to handle observation bias parameters.
const double & value() const
A Simple Observation Data Handler.
Definition: ObsTable.h:67
const std::vector< double > & locations() const
Definition: ObsTable.h:90
const std::vector< util::DateTime > & times() const
Definition: ObsTable.h:91
Vector in observation space.
Definition: ObsVec1D.h:33
const ObsTable & obsdb_
void simulateObs(const GomL95 &, ObsVec1D &, const ObsBias &, ObsVec1D &, ObsDiags1D &) const
ObservationL95(const ObsTable &, const Parameters_ &)
void print(std::ostream &) const
std::unique_ptr< LocsL95 > locations() const
(Empty) parameters controlling the observation operator for the Lorenz 95 model.
The namespace for the L95 model.