OOPS
InterpolatorUnstructured.h
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 
8 #pragma once
9 
10 #include <memory>
11 #include <ostream>
12 #include <string>
13 
14 #include "atlas/field.h"
15 #include "atlas/functionspace.h"
16 #include "eckit/config/Configuration.h"
17 
19 #include "oops/mpi/mpi.h"
20 #include "oops/util/abor1_cpp.h"
21 #include "oops/util/ObjectCounter.h"
22 
23 namespace oops {
24 
25 // -----------------------------------------------------------------------------
26 
27 /*! \brief Interface for Unstructured interpolation
28  *
29  */
30 
32  private util::ObjectCounter<InterpolatorUnstructured> {
33  public:
34  static const std::string classname() {return "oops::InterpolatorUnstructured";}
35 
36  InterpolatorUnstructured(const eckit::Configuration &, const atlas::FunctionSpace &,
37  const atlas::FunctionSpace &,
38  const atlas::field::FieldSetImpl * = nullptr,
39  const eckit::mpi::Comm & = oops::mpi::world());
41 
42  void apply(const atlas::Field &, atlas::Field &) override;
43  void apply(const atlas::FieldSet &, atlas::FieldSet &) override;
44 
45  void apply_ad(const atlas::Field &, atlas::Field &);
46  void apply_ad(const atlas::FieldSet &, atlas::FieldSet &) override;
47 
48  int write(const eckit::Configuration &) override;
49 
50  private:
52  const atlas::FunctionSpace *in_fspace_;
53  const atlas::FunctionSpace *out_fspace_;
54  void print(std::ostream &) const override;
55 };
56 
57 // -----------------------------------------------------------------------------
58 
59 } // namespace oops
Base class for Generic interpolation.
Interface for Unstructured interpolation.
const atlas::FunctionSpace * out_fspace_
InterpolatorUnstructured(const eckit::Configuration &, const atlas::FunctionSpace &, const atlas::FunctionSpace &, const atlas::field::FieldSetImpl *=nullptr, const eckit::mpi::Comm &=oops::mpi::world())
const atlas::FunctionSpace * in_fspace_
void print(std::ostream &) const override
int write(const eckit::Configuration &) override
void apply_ad(const atlas::Field &, atlas::Field &)
static const std::string classname()
void apply(const atlas::Field &, atlas::Field &) override
const eckit::mpi::Comm & world()
Default communicator with all MPI tasks (ie MPI_COMM_WORLD)
Definition: oops/mpi/mpi.cc:84
The namespace for the main oops code.