OOPS
InterpolatorUnstructured.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 
8 #include <ostream>
9 #include <string>
10 
11 #include "atlas/field.h"
12 #include "atlas/functionspace.h"
13 #include "eckit/config/Configuration.h"
14 #include "eckit/exception/Exceptions.h"
15 
18 #include "oops/util/abor1_cpp.h"
19 #include "oops/util/Logger.h"
20 
21 using atlas::option::name;
22 using atlas::option::levels;
23 
24 namespace oops {
25 
27 
28 // -----------------------------------------------------------------------------
29 InterpolatorUnstructured::InterpolatorUnstructured(const eckit::Configuration & config,
30  const atlas::FunctionSpace & fspace1,
31  const atlas::FunctionSpace & fspace2,
32  const atlas::field::FieldSetImpl * masks,
33  const eckit::mpi::Comm & comm) :
34  in_fspace_(&fspace1), out_fspace_(&fspace2) {
35  // mask have not yet been implemented for unstructured interpolation
37  fspace1.lonlat().get(), fspace2.lonlat().get(), config);
38 }
39 
40 // -----------------------------------------------------------------------------
41 int InterpolatorUnstructured::write(const eckit::Configuration & config) {
43  return 0;
44 }
45 
46 // -----------------------------------------------------------------------------
49 }
50 // -----------------------------------------------------------------------------
51 void InterpolatorUnstructured::apply(const atlas::Field & infield,
52  atlas::Field & outfield) {
54  outfield.get());
55 }
56 
57 // -----------------------------------------------------------------------------
58 void InterpolatorUnstructured::apply_ad(const atlas::Field & field_grid2,
59  atlas::Field & field_grid1) {
61  field_grid1.get());
62 }
63 
64 // -----------------------------------------------------------------------------
65 void InterpolatorUnstructured::apply(const atlas::FieldSet & infields,
66  atlas::FieldSet & outfields) {
67  // Allocate space for the output fields if the caller has not already done so
68  for (int ifield = 0; ifield < infields.size(); ++ifield) {
69  std::string fname = infields.field(ifield).name();
70  if (!outfields.has_field(fname)) {
71  oops::Log::info() << "Allocating output fields for Unstructured Interpolation" << std::endl;
72 
73  atlas::Field outfield = out_fspace_->createField<double>(name(fname) |
74  levels(infields.field(ifield).levels()));
75  outfields.add(outfield);
76  }
77  this->apply(infields.field(fname), outfields.field(fname));
78  }
79 }
80 
81 // -----------------------------------------------------------------------------
82 void InterpolatorUnstructured::apply_ad(const atlas::FieldSet & fields_grid2,
83  atlas::FieldSet & fields_grid1) {
84  // Allocate space for the output fields if the caller has not already done so
85  for (int ifield = 0; ifield < fields_grid2.size(); ++ifield) {
86  std::string fname = fields_grid2.field(ifield).name();
87  if (!fields_grid1.has_field(fname)) {
88  oops::Log::info() <<
89  "Allocating output fields for Unstructured Interpolation Adjoint" << std::endl;
90 
91  atlas::Field field1 = in_fspace_->createField<double>(name(fname) |
92  levels(fields_grid2.field(ifield).levels()));
93  fields_grid1.add(field1);
94  }
95  this->apply_ad(fields_grid2.field(fname), fields_grid1.field(fname));
96  }
97 }
98 
99 // -----------------------------------------------------------------------------
100 void InterpolatorUnstructured::print(std::ostream & os) const {
101  os << " InterpolatorUnstructured: print not implemented yet.";
102 }
103 // -----------------------------------------------------------------------------
104 } // namespace oops
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 &)
void apply(const atlas::Field &, atlas::Field &) override
The namespace for the main oops code.
void unstrc_delete_f90(const int &)
void unstrc_create_f90(int &, const eckit::mpi::Comm *, const atlas::field::FieldImpl *, const atlas::field::FieldImpl *, const eckit::Configuration &)
void unstrc_apply_f90(const int &, const atlas::field::FieldImpl *, atlas::field::FieldImpl *)
static InterpolatorMaker< InterpolatorUnstructured > makerUNSTR_("unstructured")
void unstrc_apply_ad_f90(const int &, const atlas::field::FieldImpl *, atlas::field::FieldImpl *)
void unstrc_write_f90(const int &, const eckit::Configuration &)