ASPECT
SAVANI_perturbation.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2011 - 2024 by the authors of the ASPECT code.
3 
4  This file is part of ASPECT.
5 
6  ASPECT is free software; you can redistribute it and/or modify
7  it under the terms of the GNU General Public License as published by
8  the Free Software Foundation; either version 2, or (at your option)
9  any later version.
10 
11  ASPECT is distributed in the hope that it will be useful,
12  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  GNU General Public License for more details.
15 
16  You should have received a copy of the GNU General Public License
17  along with ASPECT; see the file LICENSE. If not see
18  <http://www.gnu.org/licenses/>.
19 */
20 
21 
22 #ifndef _aspect_initial_temperature_SAVANI_perturbation_h
23 #define _aspect_initial_temperature_SAVANI_perturbation_h
24 
26 #include <aspect/utilities.h>
27 
28 namespace aspect
29 {
30  namespace InitialTemperature
31  {
32  namespace internal
33  {
34  namespace SAVANI
35  {
36  class SphericalHarmonicsLookup;
37  class SplineDepthsLookup;
38  }
39  }
40 
50  template <int dim>
51  class SAVANIPerturbation : public Interface<dim>, public ::aspect::SimulatorAccess<dim>
52  {
53  public:
58 
59 
64  void
65  initialize () override;
66 
70  //TODO
71  virtual
72  double get_Vs (const Point<dim> &position) const;
73 
77  double initial_temperature (const Point<dim> &position) const override;
78 
82  static
83  void
84  declare_parameters (ParameterHandler &prm);
85 
89  void
90  parse_parameters (ParameterHandler &prm) override;
91 
92 
93  private:
94 
99  {
102  };
103 
108 
112  std::string data_directory;
114 
120 
135 
142 
148 
153  unsigned int specified_max_degree;
154 
161 
166  std::unique_ptr<internal::SAVANI::SphericalHarmonicsLookup> spherical_harmonics_lookup;
167 
172  std::unique_ptr<internal::SAVANI::SplineDepthsLookup> spline_depths_lookup;
173 
178 
182  unsigned int vs_to_density_index;
183 
188 
189  };
190 
191  }
192 }
193 
194 #endif
aspect::Utilities::AsciiDataProfile< dim > profile
std::unique_ptr< internal::SAVANI::SphericalHarmonicsLookup > spherical_harmonics_lookup
void declare_parameters(ParameterHandler &prm)
std::unique_ptr< internal::SAVANI::SplineDepthsLookup > spline_depths_lookup
Definition: compat.h:59