ASPECT
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
interface.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2015 - 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 #ifndef _aspect_particle_property_interface_h
22 #define _aspect_particle_property_interface_h
23 
25 #include <aspect/global.h>
26 
29 
30 #include <deal.II/particles/particle.h>
31 #include <deal.II/particles/particle_handler.h>
32 #include <deal.II/particles/property_pool.h>
33 #include <deal.II/fe/fe_update_flags.h>
34 
35 #include <memory>
36 
37 namespace aspect
38 {
39  namespace Particle
40  {
41  namespace Property
42  {
43  using namespace ::Particles;
44 
49  template <int dim>
51  {
52  public:
57  std::vector<small_vector<double,50>> solution;
58 
64  std::vector<small_vector<Tensor<1,dim>,50>> gradients;
65 
72  typename DoFHandler<dim>::active_cell_iterator current_cell;
73  };
74 
110  {
111  public:
116 
129  ParticlePropertyInformation(const std::vector<std::vector<std::pair<std::string,unsigned int>>> &property_information);
130 
135  bool
136  fieldname_exists(const std::string &name) const;
137 
141  unsigned int
142  get_field_index_by_name(const std::string &name) const;
143 
147  std::string
148  get_field_name_by_index(const unsigned int field_index) const;
149 
154  unsigned int
155  get_position_by_field_name(const std::string &name) const;
156 
161  unsigned int
162  get_components_by_field_name(const std::string &name) const;
163 
169  unsigned int
170  get_position_by_field_index(const unsigned int field_index) const;
171 
176  unsigned int
177  get_components_by_field_index(const unsigned int field_index) const;
178 
184  unsigned int
185  get_position_by_plugin_index(const unsigned int plugin_index) const;
186 
191  unsigned int
192  get_components_by_plugin_index(const unsigned int plugin_index) const;
193 
198  unsigned int
199  get_fields_by_plugin_index(const unsigned int plugin_index) const;
200 
201 
205  std::vector<std::string>
206  get_property_names() const;
207 
211  unsigned int
212  n_plugins() const;
213 
217  unsigned int
218  n_fields() const;
219 
223  unsigned int
224  n_components() const;
225 
226  private:
230  std::vector<std::string> field_names;
231 
235  std::vector<unsigned int> components_per_field;
236 
241  std::vector<unsigned int> position_per_field;
242 
247  std::vector<unsigned int> fields_per_plugin;
248 
252  std::vector<unsigned int> components_per_plugin;
253 
258  std::vector<unsigned int> position_per_plugin;
259 
264  unsigned int number_of_components;
265 
269  unsigned int number_of_fields;
270 
274  unsigned int number_of_plugins;
275  };
276 
278  {
299  };
300 
307  {
333  };
334 
343  template <int dim>
345  {
346  public:
358  virtual
359  void
360  initialize_one_particle_property (const Point<dim> &position,
361  std::vector<double> &particle_properties) const;
362 
383  virtual
384  void
385  update_particle_properties (const ParticleUpdateInputs<dim> &inputs,
386  typename ParticleHandler<dim>::particle_iterator_range &particles) const;
387 
418  DEAL_II_DEPRECATED
419  virtual
420  void
421  update_particle_property (const unsigned int data_position,
422  const Vector<double> &solution,
423  const std::vector<Tensor<1,dim>> &gradients,
424  typename ParticleHandler<dim>::particle_iterator &particle) const;
425 
426 
439  virtual
441  need_update () const;
442 
463  virtual
464  UpdateFlags
465  get_update_flags (const unsigned int component) const;
466 
478  DEAL_II_DEPRECATED
479  virtual
480  UpdateFlags
481  get_needed_update_flags () const;
482 
497  virtual
499  late_initialization_mode () const;
500 
514  virtual
515  std::vector<std::pair<std::string, unsigned int>>
516  get_property_information() const = 0;
517 
521  virtual
522  void
523  set_data_position (const unsigned int data_position);
524 
528  virtual
529  unsigned int
530  get_data_position () const;
531 
532  protected:
538  unsigned int data_position;
539  };
540 
550  template <int dim>
551  class IntegratorProperties : public Interface<dim>
552  {
553  public:
559  void
560  initialize_one_particle_property (const Point<dim> &position,
561  std::vector<double> &particle_properties) const override;
562 
570  std::vector<std::pair<std::string, unsigned int>>
571  get_property_information() const override;
572 
577  void
578  parse_parameters (ParameterHandler &prm) override;
579 
580  private:
586  };
587 
588 
589 
595  template <int dim>
596  class Manager : public Plugins::ManagerBase<Interface<dim>>, public SimulatorAccess<dim>
597  {
598  public:
603  void
604  initialize () override;
605 
611  void
612  initialize_one_particle (typename ParticleHandler<dim>::particle_iterator &particle) const;
613 
620  std::vector<double>
621  initialize_late_particle (const Point<dim> &particle_location,
622  const ParticleHandler<dim> &particle_handler,
623  const Interpolator::Interface<dim> &interpolator,
624  const typename parallel::distributed::Triangulation<dim>::active_cell_iterator &cell = typename parallel::distributed::Triangulation<dim>::active_cell_iterator()) const;
625 
638  void
639  update_particles (ParticleUpdateInputs<dim> &inputs,
640  typename ParticleHandler<dim>::particle_iterator_range &particles) const;
641 
654  need_update () const;
655 
669  std::vector<UpdateFlags>
670  get_update_flags () const;
671 
676  bool
677  plugin_name_exists(const std::string &name) const;
678 
688  bool
689  check_plugin_order(const std::string &first, const std::string &second) const;
690 
694  unsigned int get_plugin_index_by_name(const std::string &name) const;
695 
710  template <typename ParticlePropertyType,
711  typename = typename std::enable_if_t<std::is_base_of<Interface<dim>,ParticlePropertyType>::value>>
712  DEAL_II_DEPRECATED
713  bool
714  has_matching_property () const;
715 
732  template <typename ParticlePropertyType,
733  typename = typename std::enable_if_t<std::is_base_of<Interface<dim>,ParticlePropertyType>::value>>
734  DEAL_II_DEPRECATED
735  const ParticlePropertyType &
736  get_matching_property () const;
737 
745  unsigned int
746  get_n_property_components () const;
747 
756  std::size_t
757  get_particle_size () const;
758 
766  get_data_info() const;
767 
786  static
787  void
788  register_particle_property (const std::string &name,
789  const std::string &description,
790  void (*declare_parameters_function) (ParameterHandler &),
791  std::unique_ptr<Property::Interface<dim>> (*factory_function) ());
792 
793 
797  static
798  void
799  declare_parameters (ParameterHandler &prm);
800 
804  void
805  parse_parameters (ParameterHandler &prm) override;
806 
812  void set_particle_manager_index(unsigned int particle_manager_index);
813 
823  static
824  void
825  write_plugin_graph (std::ostream &output_stream);
826 
827  private:
832 
838  };
839 
840  /* -------------------------- inline and template functions ---------------------- */
841 
842 
843  template <int dim>
844  template <typename ParticlePropertyType, typename>
845  inline
846  bool
848  {
849  return this->template has_matching_active_plugin<ParticlePropertyType>();
850  }
851 
852 
853  template <int dim>
854  template <typename ParticlePropertyType, typename>
855  inline
856  const ParticlePropertyType &
858  {
859  return this->template get_matching_active_plugin<ParticlePropertyType>();
860  }
861 
862 
869 #define ASPECT_REGISTER_PARTICLE_PROPERTY(classname,name,description) \
870  template class classname<2>; \
871  template class classname<3>; \
872  namespace ASPECT_REGISTER_PARTICLE_PROPERTY_ ## classname \
873  { \
874  aspect::internal::Plugins::RegisterHelper<aspect::Particle::Property::Interface<2>,classname<2>> \
875  dummy_ ## classname ## _2d (&aspect::Particle::Property::Manager<2>::register_particle_property, \
876  name, description); \
877  aspect::internal::Plugins::RegisterHelper<aspect::Particle::Property::Interface<3>,classname<3>> \
878  dummy_ ## classname ## _3d (&aspect::Particle::Property::Manager<3>::register_particle_property, \
879  name, description); \
880  }
881 
882  }
883  }
884 }
885 
886 #endif
DoFHandler< dim >::active_cell_iterator current_cell
Definition: interface.h:72
DEAL_II_DEPRECATED const ParticlePropertyType & get_matching_property() const
ParticlePropertyInformation property_information
Definition: interface.h:837
std::vector< small_vector< Tensor< 1, dim >, 50 > > gradients
Definition: interface.h:64
void write_plugin_graph(std::ostream &output_stream)
std::vector< small_vector< double, 50 > > solution
Definition: interface.h:57
Definition: compat.h:59
DEAL_II_DEPRECATED bool has_matching_property() const
void declare_parameters(ParameterHandler &prm)