ASPECT
interface.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_generator_interface_h
22 #define _aspect_particle_generator_interface_h
23 
26 
27 #include <deal.II/particles/particle.h>
28 #include <deal.II/particles/generators.h>
29 #include <deal.II/base/parameter_handler.h>
30 #include <deal.II/base/exceptions.h>
31 
32 #include <random>
33 
34 #include <map>
35 
36 namespace aspect
37 {
38  namespace Particle
39  {
46  namespace Generator
47  {
48  using namespace ::Particles;
49  using ::Particles::Particle;
50 
54  DeclExceptionMsg (ExcParticlePointNotInDomain,
55  "You requested to generate a particle at a position that "
56  "is not owned by this process, therefore the "
57  "Particle::Generator::Interface::generate_particle() function "
58  "refused to create it. You can circumvent this error message "
59  "by catching the ExcParticlePointNotInDomain exception and "
60  "do whatever you think is appropriate in this case.");
61 
67  template <int dim>
68  class Interface : public SimulatorAccess<dim>, public ParticleInterfaceBase
69  {
70  public:
71  virtual
72  void
73  initialize () override;
74 
90  virtual
91  void
92  generate_particles(std::multimap<Particles::internal::LevelInd, Particle<dim>> &particles);
93 
105  virtual
106  void
107  generate_particles(Particles::ParticleHandler<dim> &particle_handler);
108 
115  std::pair<Particles::internal::LevelInd,Particle<dim>>
116  generate_particle (const typename parallel::distributed::Triangulation<dim>::active_cell_iterator &cell,
117  const types::particle_index id);
118 
119  protected:
132  std::pair<Particles::internal::LevelInd,Particle<dim>>
133  generate_particle(const Point<dim> &position,
134  const types::particle_index id) const;
135 
156  Particles::ParticleIterator<dim>
157  insert_particle_at_position(const Point<dim> &position,
158  const types::particle_index id,
159  Particles::ParticleHandler<dim> &particle_handler) const;
160 
166  };
167 
183  template <int dim>
184  void
185  register_particle_generator (const std::string &name,
186  const std::string &description,
187  void (*declare_parameters_function) (ParameterHandler &),
188  std::unique_ptr<Interface<dim>> (*factory_function) ());
189 
200  template <int dim>
201  std::unique_ptr<Interface<dim>>
202  create_particle_generator (ParameterHandler &prm);
203 
209  template <int dim>
210  void
211  declare_parameters (ParameterHandler &prm);
212 
213 
223  template <int dim>
224  void
225  write_plugin_graph (std::ostream &output_stream);
226 
227 
235 #define ASPECT_REGISTER_PARTICLE_GENERATOR(classname, name, description) \
236  template class classname<2>; \
237  template class classname<3>; \
238  namespace ASPECT_REGISTER_PARTICLE_GENERATOR_ ## classname \
239  { \
240  aspect::internal::Plugins::RegisterHelper<aspect::Particle::Generator::Interface<2>,classname<2 >> \
241  dummy_ ## classname ## _2d (&aspect::Particle::Generator::register_particle_generator<2>, \
242  name, description); \
243  aspect::internal::Plugins::RegisterHelper<aspect::Particle::Generator::Interface<3>,classname<3>> \
244  dummy_ ## classname ## _3d (&aspect::Particle::Generator::register_particle_generator<3>, \
245  name, description); \
246  }
247  }
248  }
249 }
250 
251 #endif
Particles::ParticleIterator< dim > insert_particle_at_position(const Point< dim > &position, const types::particle_index id, Particles::ParticleHandler< dim > &particle_handler) const
StructuredDataLookup< dim > DEAL_II_DEPRECATED
virtual void initialize() override
std::pair< Particles::internal::LevelInd, Particle< dim > > generate_particle(const typename parallel::distributed::Triangulation< dim >::active_cell_iterator &cell, const types::particle_index id)
DeclExceptionMsg(ExcParticlePointNotInDomain, "You requested to generate a particle at a position that " "is not owned by this process, therefore the " "Particle::Generator::Interface::generate_particle() function " "refused to create it. You can circumvent this error message " "by catching the ExcParticlePointNotInDomain exception and " "do whatever you think is appropriate in this case.")
Definition: compat.h:59
void register_particle_generator(const std::string &name, const std::string &description, void(*declare_parameters_function)(ParameterHandler &), std::unique_ptr< Interface< dim >>(*factory_function)())
void write_plugin_graph(std::ostream &output_stream)
std::unique_ptr< Interface< dim > > create_particle_generator(ParameterHandler &prm)
virtual DEAL_II_DEPRECATED void generate_particles(std::multimap< Particles::internal::LevelInd, Particle< dim >> &particles)
static void declare_parameters(ParameterHandler &prm)