ASPECT
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
composition_reaction.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2015 - 2022 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 #ifndef _aspect_particle_property_composition_reaction_h
22 #define _aspect_particle_property_composition_reaction_h
23 
26 #include <aspect/utilities.h>
27 
28 #include <deal.II/base/parsed_function.h>
29 
30 namespace aspect
31 {
32  namespace Particle
33  {
34  namespace Property
35  {
44  template <int dim>
45  class CompositionReaction : public Interface<dim>, public SimulatorAccess<dim>
46  {
47  public:
59  void
60  initialize_one_particle_property (const Point<dim> &position,
61  std::vector<double> &particle_properties) const override;
62 
66  void
68  typename ParticleHandler<dim>::particle_iterator_range &particles) const override;
69 
79  late_initialization_mode () const override;
80 
85  need_update () const override;
86 
94  std::vector<std::pair<std::string, unsigned int>>
95  get_property_information() const override;
96 
100  static
101  void
102  declare_parameters (ParameterHandler &prm);
103 
107  void
108  parse_parameters (ParameterHandler &prm) override;
109 
110  private:
115  std::unique_ptr<Functions::ParsedFunction<dim>> reaction_area;
116 
122 
130  std::unique_ptr<Functions::ParsedFunction<2>> reaction_rate;
131 
136  std::vector<unsigned int> reactant_indices;
137  std::vector<unsigned int> product_indices;
138 
142  std::vector<double> reaction_times;
143 
150  constexpr static unsigned int background_index = numbers::invalid_unsigned_int;
151  };
152  }
153  }
154 }
155 
156 #endif
void initialize_one_particle_property(const Point< dim > &position, std::vector< double > &particle_properties) const override
void parse_parameters(ParameterHandler &prm) override
Utilities::Coordinates::CoordinateSystem coordinate_system
InitializationModeForLateParticles late_initialization_mode() const override
UpdateTimeFlags need_update() const override
Definition: compat.h:59
std::vector< std::pair< std::string, unsigned int > > get_property_information() const override
static void declare_parameters(ParameterHandler &prm)
std::unique_ptr< Functions::ParsedFunction< 2 > > reaction_rate
std::unique_ptr< Functions::ParsedFunction< dim > > reaction_area
void update_particle_properties(const ParticleUpdateInputs< dim > &inputs, typename ParticleHandler< dim >::particle_iterator_range &particles) const override