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
LingleClark.hh
Go to the documentation of this file.
1/* Copyright (C) 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 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#ifndef PISM_LINGLE_CLARK_H
21#define PISM_LINGLE_CLARK_H
22
23#include <memory> // std::unique_ptr
24
25#include "pism/earth/BedDef.hh"
26
27namespace pism {
28namespace bed {
29
30class LingleClarkSerial;
31
32//! A wrapper class around LingleClarkSerial.
33class LingleClark : public BedDef {
34public:
35 LingleClark(std::shared_ptr<const Grid> g);
36 virtual ~LingleClark();
37
38 const array::Scalar& total_displacement() const;
39
41
43
44 const array::Scalar& relief() const;
45
46 void step(const array::Scalar &load_thickness,
47 double dt);
48
49 std::shared_ptr<array::Scalar> elastic_load_response_matrix() const;
50protected:
51 virtual void define_model_state_impl(const File &output) const;
52 virtual void write_model_state_impl(const File &output) const;
53
55
56 void init_impl(const InputOptions &opts, const array::Scalar &ice_thickness,
57 const array::Scalar &sea_level_elevation);
59 const array::Scalar &bed_uplift,
60 const array::Scalar &ice_thickness,
61 const array::Scalar &sea_level_elevation);
62 void update_impl(const array::Scalar &load, double t, double dt);
63
64 //! Total (viscous and elastic) bed displacement.
66
67 //! Storage on rank zero. Used to pass the load to the serial deformation model and get
68 //! bed displacement back.
69 std::shared_ptr<petsc::Vec> m_work0;
70
71 //! Bed relief relative to the bed displacement.
73
74 //! Serial viscoelastic bed deformation model.
75 std::unique_ptr<LingleClarkSerial> m_serial_model;
76
77 //! extended grid for the viscous plate displacement
78 std::shared_ptr<Grid> m_extended_grid;
79
80 //! Viscous displacement on the extended grid (part of the model state).
81 std::shared_ptr<array::Scalar> m_viscous_displacement;
82 //! rank 0 storage using the extended grid
83 std::shared_ptr<petsc::Vec> m_viscous_displacement0;
84
85 //! Elastic bed displacement (part of the model state)
87 //! rank 0 storage for the elastic displacement
88 std::shared_ptr<petsc::Vec> m_elastic_displacement0;
89};
90
91} // end of namespace bed
92} // end of namespace pism
93
94#endif /* PISM_LINGLE_CLARK_H */
High-level PISM I/O class.
Definition File.hh:55
const array::Scalar & bed_elevation() const
Definition BedDef.cc:71
PISM bed deformation model (base class).
Definition BedDef.hh:37
std::shared_ptr< petsc::Vec > m_elastic_displacement0
rank 0 storage for the elastic displacement
void bootstrap_impl(const array::Scalar &bed_elevation, const array::Scalar &bed_uplift, const array::Scalar &ice_thickness, const array::Scalar &sea_level_elevation)
void init_impl(const InputOptions &opts, const array::Scalar &ice_thickness, const array::Scalar &sea_level_elevation)
std::shared_ptr< petsc::Vec > m_work0
array::Scalar m_elastic_displacement
Elastic bed displacement (part of the model state)
const array::Scalar & elastic_displacement() const
std::shared_ptr< Grid > m_extended_grid
extended grid for the viscous plate displacement
virtual void write_model_state_impl(const File &output) const
The default (empty implementation).
void update_impl(const array::Scalar &load, double t, double dt)
Update the Lingle-Clark bed deformation model.
std::shared_ptr< array::Scalar > m_viscous_displacement
Viscous displacement on the extended grid (part of the model state).
array::Scalar m_relief
Bed relief relative to the bed displacement.
virtual void define_model_state_impl(const File &output) const
The default (empty implementation).
std::shared_ptr< petsc::Vec > m_viscous_displacement0
rank 0 storage using the extended grid
const array::Scalar & relief() const
void step(const array::Scalar &load_thickness, double dt)
DiagnosticList diagnostics_impl() const
std::unique_ptr< LingleClarkSerial > m_serial_model
Serial viscoelastic bed deformation model.
const array::Scalar & total_displacement() const
array::Scalar m_total_displacement
Total (viscous and elastic) bed displacement.
const array::Scalar & viscous_displacement() const
std::shared_ptr< array::Scalar > elastic_load_response_matrix() const
A wrapper class around LingleClarkSerial.
static const double g
Definition exactTestP.cc:36
std::map< std::string, Diagnostic::Ptr > DiagnosticList