MPAS-JEDI
ErrorCovarianceMPAS.cc
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2017 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 
8 #include <cmath>
9 
10 #include "eckit/config/Configuration.h"
11 
12 #include "oops/base/Variables.h"
13 #include "oops/util/Logger.h"
14 
16 #include "mpasjedi/IncrementMPAS.h"
17 #include "mpasjedi/StateMPAS.h"
18 
19 // -----------------------------------------------------------------------------
20 namespace mpas {
21 // -----------------------------------------------------------------------------
22 
24  const oops::Variables &,
25  const eckit::Configuration & config,
26  const StateMPAS &,
27  const StateMPAS & ) {
28  time_ = util::DateTime(config.getString("date"));
30  oops::Log::trace() << "ErrorCovarianceMPAS created" << std::endl;
31 }
32 
33 // -----------------------------------------------------------------------------
34 
37  oops::Log::trace() << "ErrorCovarianceMPAS destructed" << std::endl;
38 }
39 
40 // -----------------------------------------------------------------------------
41 
43  const GeometryMPAS & resol) {
44  geom_.reset(new GeometryMPAS(resol));
45 }
46 
47 // -----------------------------------------------------------------------------
48 
50  IncrementMPAS & dxout) const {
52  dxout.toFortran());
53 }
54 
55 // -----------------------------------------------------------------------------
56 
58  IncrementMPAS & dxout) const {
60  dxout.toFortran());
61 }
62 
63 // -----------------------------------------------------------------------------
64 
67 }
68 
69 // -----------------------------------------------------------------------------
70 
71 void ErrorCovarianceMPAS::print(std::ostream & os) const {
72  os << "ErrorCovarianceMPAS::print not implemented";
73 }
74 
75 // -----------------------------------------------------------------------------
76 
77 } // namespace mpas
void inverseMultiply(const IncrementMPAS &, IncrementMPAS &) const
void randomize(IncrementMPAS &) const
void multiply(const IncrementMPAS &, IncrementMPAS &) const
std::unique_ptr< const GeometryMPAS > geom_
void linearize(const StateMPAS &, const GeometryMPAS &)
void print(std::ostream &) const
ErrorCovarianceMPAS(const GeometryMPAS &, const oops::Variables &, const eckit::Configuration &, const StateMPAS &, const StateMPAS &)
GeometryMPAS handles geometry for MPAS model.
Definition: GeometryMPAS.h:37
F90geom & toFortran()
Definition: GeometryMPAS.h:45
Increment Class: Difference between two states.
Definition: IncrementMPAS.h:57
MPAS model state.
Definition: StateMPAS.h:51
Definition: config.py:1
void mpas_b_randomize_f90(const F90bmat &, const F90inc &)
void mpas_b_invmult_f90(const F90bmat &, const F90inc &, const F90inc &)
void mpas_b_delete_f90(F90bmat &)
void mpas_b_mult_f90(const F90bmat &, const F90inc &, const F90inc &)
void mpas_b_setup_f90(F90bmat &, const eckit::Configuration &, const F90geom &)