21 #ifndef _aspect_particle_generator_interface_h 22 #define _aspect_particle_generator_interface_h 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> 48 using namespace ::Particles;
49 using ::Particles::Particle;
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.");
68 class Interface :
public SimulatorAccess<dim>,
public ParticleInterfaceBase
96 std::pair<Particles::internal::LevelInd,Particle<dim>>
97 generate_particle (
const typename parallel::distributed::Triangulation<dim>::active_cell_iterator &cell,
98 const types::particle_index
id);
113 std::pair<Particles::internal::LevelInd,Particle<dim>>
115 const types::particle_index
id)
const;
137 Particles::ParticleIterator<dim>
139 const types::particle_index
id,
140 Particles::ParticleHandler<dim> &particle_handler)
const;
167 const std::string &description,
168 void (*declare_parameters_function) (ParameterHandler &),
182 std::unique_ptr<Interface<dim>>
216 #define ASPECT_REGISTER_PARTICLE_GENERATOR(classname, name, description) \ 217 template class classname<2>; \ 218 template class classname<3>; \ 219 namespace ASPECT_REGISTER_PARTICLE_GENERATOR_ ## classname \ 221 aspect::internal::Plugins::RegisterHelper<aspect::Particle::Generator::Interface<2>,classname<2 >> \ 222 dummy_ ## classname ## _2d (&aspect::Particle::Generator::register_particle_generator<2>, \ 223 name, description); \ 224 aspect::internal::Plugins::RegisterHelper<aspect::Particle::Generator::Interface<3>,classname<3>> \ 225 dummy_ ## classname ## _3d (&aspect::Particle::Generator::register_particle_generator<3>, \ 226 name, description); \ Particles::ParticleIterator< dim > insert_particle_at_position(const Point< dim > &position, const types::particle_index id, Particles::ParticleHandler< dim > &particle_handler) const
virtual void initialize() override
virtual void generate_particles(Particles::ParticleHandler< dim > &particle_handler)=0
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.")
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)
std::mt19937 random_number_generator
static void declare_parameters(ParameterHandler &prm)