15#ifndef dealii_particles_particle_accessor_h
16#define dealii_particles_particle_accessor_h
35 class ParticleIterator;
37 class ParticleHandler;
43 template <
int dim,
int spacedim = dim>
101 std::vector<typename PropertyPool<dim, spacedim>::Handle>
particles;
387 template <
class Archive>
389 save(Archive &ar,
const unsigned int version)
const;
400 template <
class Archive>
402 load(Archive &ar,
const unsigned int version);
410 template <
class Archive>
412 serialize(Archive &archive,
const unsigned int version);
416 BOOST_SERIALIZATION_SPLIT_MEMBER()
506 template <
int dim,
int spacedim>
507 template <
class Archive>
511 unsigned int n_properties = 0;
516 ar &location &reference_location &
id &n_properties;
518 set_location(location);
519 set_reference_location(reference_location);
522 if (n_properties > 0)
526 properties.
size() == n_properties,
528 "This particle was serialized with " +
529 std::to_string(n_properties) +
530 " properties, but the new property handler provides space for " +
531 std::to_string(properties.
size()) +
532 " properties. Deserializing a particle only works for matching property sizes."));
534 ar &boost::serialization::make_array(properties.
data(), n_properties);
540 template <
int dim,
int spacedim>
541 template <
class Archive>
545 unsigned int n_properties = 0;
546 if ((property_pool !=
nullptr) &&
548 n_properties = get_properties().size();
551 Point<dim> reference_location = get_reference_location();
554 ar &location &reference_location &
id &n_properties;
556 if (n_properties > 0)
557 ar &boost::serialization::make_array(get_properties().data(),
564 template <
int dim,
int spacedim>
567 , property_pool(nullptr)
568 , particle_index_within_cell(
numbers::invalid_unsigned_int)
573 template <
int dim,
int spacedim>
575 const typename particle_container::iterator particles_in_cell,
577 const unsigned int particle_index_within_cell)
578 : particles_in_cell(particles_in_cell)
579 , property_pool(const_cast<
PropertyPool<dim, spacedim> *>(&property_pool))
580 , particle_index_within_cell(particle_index_within_cell)
585 template <
int dim,
int spacedim>
595 const double *pdata =
reinterpret_cast<const double *
>(id_data);
598 for (
unsigned int i = 0; i < spacedim; ++i)
599 location[i] = *pdata++;
600 set_location(location);
603 for (
unsigned int i = 0; i < dim; ++i)
604 reference_location[i] = *pdata++;
605 set_reference_location(reference_location);
608 if (has_properties())
611 property_pool->get_properties(get_handle());
612 const unsigned int size = particle_properties.
size();
613 for (
unsigned int i = 0; i < size; ++i)
614 particle_properties[i] = *pdata++;
617 return static_cast<const void *
>(pdata);
622 template <
int dim,
int spacedim>
632 double *pdata =
reinterpret_cast<double *
>(id_data);
635 for (
unsigned int i = 0; i < spacedim; ++i, ++pdata)
636 *pdata = get_location()[i];
639 for (
unsigned int i = 0; i < dim; ++i, ++pdata)
640 *pdata = get_reference_location()[i];
643 if (has_properties())
646 property_pool->get_properties(get_handle());
647 for (
unsigned int i = 0; i < particle_properties.
size(); ++i, ++pdata)
648 *pdata = particle_properties[i];
651 return static_cast<void *
>(pdata);
656 template <
int dim,
int spacedim>
662 property_pool->set_location(get_handle(), new_loc);
667 template <
int dim,
int spacedim>
673 return property_pool->get_location(get_handle());
678 template <
int dim,
int spacedim>
684 return property_pool->get_location(get_handle());
689 template <
int dim,
int spacedim>
696 property_pool->set_reference_location(get_handle(), new_loc);
701 template <
int dim,
int spacedim>
707 return property_pool->get_reference_location(get_handle());
712 template <
int dim,
int spacedim>
718 return property_pool->get_id(get_handle());
723 template <
int dim,
int spacedim>
734 template <
int dim,
int spacedim>
740 property_pool->set_id(get_handle(), new_id);
745 template <
int dim,
int spacedim>
758 return (property_pool->n_properties_per_slot() > 0);
763 template <
int dim,
int spacedim>
766 const std::vector<double> &new_properties)
776 template <
int dim,
int spacedim>
784 property_pool->get_properties(get_handle());
788 "You are trying to assign properties with an incompatible length. "
789 "The particle has space to store " +
790 std::to_string(property_values.
size()) +
791 " properties, but you are trying to assign " +
792 std::to_string(new_properties.
size()) +
793 " properties. This is not allowed."));
795 if (property_values.
size() > 0)
796 std::copy(new_properties.
begin(),
797 new_properties.
end(),
798 property_values.
begin());
803 template <
int dim,
int spacedim>
814 for (
unsigned int d = 0; d < dim; ++d)
815 array[d] = new_properties[d];
822 template <
int dim,
int spacedim>
828 return property_pool->get_properties(get_handle());
833 template <
int dim,
int spacedim>
839 (void)new_property_pool;
844 template <
int dim,
int spacedim>
852 return particles_in_cell->cell;
863 template <
int dim,
int spacedim>
869 std::size_t size =
sizeof(get_id()) +
870 sizeof(
double) * spacedim +
871 sizeof(double) * dim;
873 if (has_properties())
875 size +=
sizeof(double) * get_properties().size();
882 template <
int dim,
int spacedim>
888 ++particle_index_within_cell;
890 if (particle_index_within_cell >= particles_in_cell->particles.size())
892 particle_index_within_cell = 0;
899 template <
int dim,
int spacedim>
905 if (particle_index_within_cell > 0)
906 --particle_index_within_cell;
910 particle_index_within_cell = particles_in_cell->particles.empty() ?
912 particles_in_cell->particles.size() - 1;
918 template <
int dim,
int spacedim>
923 return !(*
this == other);
928 template <
int dim,
int spacedim>
940 template <
int dim,
int spacedim>
944 if (property_pool !=
nullptr &&
946 particle_index_within_cell < particles_in_cell->particles.size())
948 else if (property_pool !=
nullptr &&
950 particle_index_within_cell == 0)
960 template <
int dim,
int spacedim>
964 return particles_in_cell->particles[particle_index_within_cell];
969 template <
int dim,
int spacedim>
973 return particles_in_cell->particles[particle_index_within_cell];
994 template <
int dim,
int spacedim>
1007 return accessor.get_location();
ArrayView< std::remove_reference_t< typename std::iterator_traits< Iterator >::reference >, MemorySpaceType > make_array_view(const Iterator begin, const Iterator end)
value_type * data() const noexcept
particle_container::iterator particles_in_cell
const Point< spacedim > & get_location() const
types::particle_index get_id() const
void save(Archive &ar, const unsigned int version) const
unsigned int particle_index_within_cell
types::particle_index get_local_index() const
std::list< ParticlesInCell > particle_container
const void * read_particle_data_from_memory(const void *data)
void load(Archive &ar, const unsigned int version)
const Triangulation< dim, spacedim >::cell_iterator & get_surrounding_cell() const
IteratorState::IteratorStates state() const
bool operator!=(const ParticleAccessor< dim, spacedim > &other) const
void set_properties(const Tensor< 1, dim > &new_properties)
void set_location(const Point< spacedim > &new_location)
PropertyPool< dim, spacedim >::Handle & get_handle()
void serialize(Archive &archive, const unsigned int version)
void set_property_pool(PropertyPool< dim, spacedim > &property_pool)
ArrayView< double > get_properties()
void set_reference_location(const Point< dim > &new_reference_location)
const Point< dim > & get_reference_location() const
std::size_t serialized_size_in_bytes() const
const PropertyPool< dim, spacedim >::Handle & get_handle() const
void set_properties(const std::vector< double > &new_properties)
Point< spacedim > & get_location()
ParticleAccessor(const typename particle_container::iterator particles_in_cell, const PropertyPool< dim, spacedim > &property_pool, const unsigned int particle_index_within_cell)
bool has_properties() const
PropertyPool< dim, spacedim > * property_pool
void * write_particle_data_to_memory(void *data) const
void set_properties(const ArrayView< const double > &new_properties)
ArrayView< const double > get_properties() const
bool operator==(const ParticleAccessor< dim, spacedim > &other) const
void set_id(const types::particle_index &new_id)
ArrayView< double, ::MemorySpace::Host > get_properties(const Handle handle)
#define DEAL_II_DEPRECATED
#define DEAL_II_NAMESPACE_OPEN
#define DEAL_II_NAMESPACE_CLOSE
#define Assert(cond, exc)
static ::ExceptionBase & ExcInternalError()
static ::ExceptionBase & ExcMessage(std::string arg1)
@ past_the_end
Iterator reached end of container.
@ valid
Iterator points to a valid object.
@ invalid
Iterator is invalid, probably due to an error.
Triangulation< dim, spacedim >::active_cell_iterator cell
ParticlesInCell()=default
ParticlesInCell(const std::vector< typename PropertyPool< dim, spacedim >::Handle > &particles, const typename Triangulation< dim, spacedim >::active_cell_iterator &cell)
std::vector< typename PropertyPool< dim, spacedim >::Handle > particles
result_type operator()(const ::Particles::ParticleAccessor< dim, spacedim > &accessor) const