Loading [MathJax]/extensions/tex2jax.js
PISM, A Parallel Ice Sheet Model 2.2.2-d6b3a29ca committed by Constantine Khrulev on 2025-03-28
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
InputInterpolationYAC.hh
Go to the documentation of this file.
1/* Copyright (C) 2024 PISM Authors
2 *
3 * This file is part of PISM.
4 *
5 * PISM is free software; you can redistribute it and/or modify it under the
6 * terms of the GNU General Public License as published by the Free Software
7 * Foundation; either version 3 of the License, or (at your option) any later
8 * version.
9 *
10 * PISM is distributed in the hope that it will be useful, but WITHOUT ANY
11 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
13 * details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with PISM; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19
20#ifndef PISM_YACINTERPOLATION_H
21#define PISM_YACINTERPOLATION_H
22
23#include <memory>
24#include <string>
25
26#include "pism/util/InputInterpolation.hh"
27
28namespace pism {
29class Grid;
30class File;
31class SpatialVariableMetadata;
32
33namespace array {
34class Scalar;
35}
36
37namespace petsc {
38class Vec;
39}
40
41/*!
42 * Interpolation from a Cartesian projected grid in an `input_file`.
43 *
44 * An `input_file` has to contain projection information (any of the options supported by
45 * MappingInfo::FromFile()).
46 */
48public:
49 InputInterpolationYAC(const Grid &target_grid, const File &input_file,
50 const std::string &variable_name,
52 virtual ~InputInterpolationYAC();
53
54 void regrid(const File &file, array::Scalar &output) const;
55
56private:
57 double regrid_impl(const SpatialVariableMetadata &metadata, const pism::File &file,
58 int record_index, const Grid &target_grid, petsc::Vec &output) const;
59
60 double interpolate(const array::Scalar &source, petsc::Vec &target) const;
61
62 static int define_field(int component_id, const std::vector<double> &x,
63 const std::vector<double> &y, const std::string &proj_string,
64 const std::string &name);
65 static int define_grid(const std::vector<double> &x, const std::vector<double> &y,
66 const std::string &grid_name, const std::string &projection);
67
71
72 std::shared_ptr<array::Scalar> m_buffer;
73};
74
75} // namespace pism
76
77#endif /* PISM_YACINTERPOLATION_H */
High-level PISM I/O class.
Definition File.hh:55
Describes the PISM grid and the distribution of data across processors.
Definition Grid.hh:290
double regrid_impl(const SpatialVariableMetadata &metadata, const pism::File &file, int record_index, const Grid &target_grid, petsc::Vec &output) const
static int define_field(int component_id, const std::vector< double > &x, const std::vector< double > &y, const std::string &proj_string, const std::string &name)
static int define_grid(const std::vector< double > &x, const std::vector< double > &y, const std::string &grid_name, const std::string &projection)
double interpolate(const array::Scalar &source, petsc::Vec &target) const
std::shared_ptr< array::Scalar > m_buffer
void regrid(const File &file, array::Scalar &output) const
Spatial NetCDF variable (corresponding to a 2D or 3D scalar field).
std::string grid_name(const pism::File &file, const std::string &variable_name, pism::units::System::Ptr sys, bool piecewise_constant)