OOPS
ObservationTLAD.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"
19 #include "lorenz95/ObsVec1D.h"
20 #include "oops/base/Variables.h"
21 #include "oops/util/missingValues.h"
22 
23 // -----------------------------------------------------------------------------
24 namespace lorenz95 {
25 // -----------------------------------------------------------------------------
26 
28  : inputs_(std::vector<std::string>{"x"})
29 {}
30 
31 // -----------------------------------------------------------------------------
32 
34 
35 // -----------------------------------------------------------------------------
36 
38  const ObsBiasCorrection & bias) const {
39  for (size_t jj = 0; jj < gom.size(); ++jj) {
40  ovec[jj] = gom[jj] + bias.value();
41  }
42 }
43 
44 // -----------------------------------------------------------------------------
45 
47  ObsBiasCorrection & bias) const {
48  const double missing = util::missingValue(double());
49  for (size_t jj = 0; jj < gom.size(); ++jj) {
50  if (ovec[jj] != missing) {
51  gom[jj] = ovec[jj];
52  bias.value() += ovec[jj];
53  }
54  }
55 }
56 
57 // -----------------------------------------------------------------------------
58 
59 void ObservationTLAD::print(std::ostream & os) const {
60  os << "Lorenz 95: Identity linear obs operator";
61 }
62 
63 // -----------------------------------------------------------------------------
64 
65 } // namespace lorenz95
GomL95 class to handle locations for L95 model.
Definition: GomL95.h:33
size_t size() const
Definition: GomL95.h:54
Class to handle observation bias parameters.
A Simple Observation Data Handler.
Definition: ObsTable.h:67
Vector in observation space.
Definition: ObsVec1D.h:33
(Empty) parameters controlling the observation operator for the Lorenz 95 model.
void simulateObsTL(const GomL95 &, ObsVec1D &, const ObsBiasCorrection &) const
void print(std::ostream &) const
ObservationTLAD(const ObsTable &, const Parameters_ &)
void simulateObsAD(GomL95 &, const ObsVec1D &, ObsBiasCorrection &) const
void setTrajectory(const GomL95 &, const ObsBias &)
The namespace for the L95 model.