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
Given.cc
Go to the documentation of this file.
1/* Copyright (C) 2020, 2021, 2022, 2023, 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#include "pism/earth/Given.hh"
21#include "pism/util/array/Forcing.hh"
22
23namespace pism {
24namespace bed {
25
26Given::Given(std::shared_ptr<const Grid> grid)
27 : BedDef(grid, "'prescribed topography change history'"),
28 m_topg_reference(grid, "topg") {
29
31 .long_name("reference bed elevation")
32 .units("meters")
33 .standard_name("bedrock_altitude");
34
35 auto filename = m_config->get_string("bed_deformation.given.file");
36
37 {
38 unsigned int buffer_size = m_config->get_number("input.forcing.buffer_size");
39
40 // periodic inputs are not supported
41 bool periodic = false;
42
43 File file(m_grid->com, filename, io::PISM_NETCDF3, io::PISM_READONLY);
44
45 m_topg_delta = std::make_shared<array::Forcing>(m_grid, file, "topg_delta",
46 "", // no standard name
47 buffer_size, periodic, LINEAR);
48 m_topg_delta->metadata(0)
49 .long_name("two-dimensional bed elevation changes")
50 .units("meters");
51 }
52}
53
54void Given::init_impl(const InputOptions & /*opts*/, const array::Scalar & /*ice_thickness*/,
55 const array::Scalar & /*sea_level_elevation*/) {
56 {
57 auto reference_filename = m_config->get_string("bed_deformation.given.reference_file");
58 m_topg_reference.regrid(reference_filename, io::Default::Nil()); // fails if not found!
59 }
60
61 {
62 auto filename = m_config->get_string("bed_deformation.given.file");
63 bool periodic_p = false;
64 m_topg_delta->init(filename, periodic_p);
65 }
66}
67
68void Given::bootstrap_impl(const array::Scalar & /*bed_elevation*/,
69 const array::Scalar & /*bed_uplift*/,
70 const array::Scalar & /*ice_thickness*/,
71 const array::Scalar & /*sea_level_elevation*/) {
72 // empty
73}
74
75void Given::update_impl(const array::Scalar & /*load*/, double t, double dt) {
76 m_topg_delta->update(t, dt);
77 m_topg_delta->average(t, dt);
78
80
81 // mark m_topg as "modified"
83}
84
85} // end of namespace bed
86} // end of namespace pism
const Config::ConstPtr m_config
configuration database used by this component
Definition Component.hh:158
const std::shared_ptr< const Grid > m_grid
grid used by this component
Definition Component.hh:156
High-level PISM I/O class.
Definition File.hh:55
VariableMetadata & long_name(const std::string &input)
VariableMetadata & units(const std::string &input)
VariableMetadata & standard_name(const std::string &input)
std::string get_string(const std::string &name) const
Get a string attribute.
void add(double alpha, const Array2D< T > &x)
Definition Array2D.hh:65
void inc_state_counter()
Increment the object state counter.
Definition Array.cc:150
void regrid(const std::string &filename, io::Default default_value)
Definition Array.cc:736
SpatialVariableMetadata & metadata(unsigned int N=0)
Returns a reference to the SpatialVariableMetadata object containing metadata for the compoment N.
Definition Array.cc:476
array::Scalar2 m_topg
current bed elevation
Definition BedDef.hh:78
PISM bed deformation model (base class).
Definition BedDef.hh:37
void bootstrap_impl(const array::Scalar &bed_elevation, const array::Scalar &bed_uplift, const array::Scalar &ice_thickness, const array::Scalar &sea_level_elevation)
Definition Given.cc:68
array::Scalar m_topg_reference
Definition Given.hh:46
void update_impl(const array::Scalar &load, double t, double dt)
Definition Given.cc:75
std::shared_ptr< array::Forcing > m_topg_delta
Definition Given.hh:48
Given(std::shared_ptr< const Grid > grid)
Definition Given.cc:26
void init_impl(const InputOptions &opts, const array::Scalar &ice_thickness, const array::Scalar &sea_level_elevation)
Definition Given.cc:54
static Default Nil()
Definition IO_Flags.hh:93
@ PISM_NETCDF3
Definition IO_Flags.hh:57
@ PISM_READONLY
open an existing file for reading only
Definition IO_Flags.hh:68