33#include <boost/mpi/collectives/all_reduce.hpp>
34#include <boost/serialization/vector.hpp>
45 std::optional<bool>
const &is_boundary) {
46 return boost::mpi::all_reduce(comm, is_boundary ? *is_boundary :
false,
52 if (
name ==
"override_index") {
62 if (
name ==
"set_density") {
64 m_ek_species->set_node_density(m_index,
dens * m_conv_dens);
65 m_ek_species->ghost_communication();
68 if (
name ==
"get_density") {
69 auto const result = m_ek_species->get_node_density(m_index);
73 if (
name ==
"get_is_boundary") {
74 auto const result = m_ek_species->get_node_is_boundary(m_index);
77 if (
name ==
"get_node_density_at_boundary") {
79 m_ek_species->get_node_is_density_boundary(m_index);
81 auto const result = m_ek_species->get_node_density_at_boundary(m_index);
87 if (
name ==
"set_node_density_at_boundary") {
89 m_ek_species->remove_node_from_density_boundary(m_index);
92 m_ek_species->set_node_density_boundary(m_index,
dens);
96 if (
name ==
"get_node_flux_at_boundary") {
97 auto const boundary_opt = m_ek_species->get_node_is_flux_boundary(m_index);
99 auto const result = m_ek_species->get_node_flux_at_boundary(m_index);
105 if (
name ==
"set_node_flux_at_boundary") {
107 m_ek_species->remove_node_from_flux_boundary(m_index);
111 m_ek_species->set_node_flux_boundary(m_index,
flux);
Vector implementation and trait types for boost qvm interoperability.
bool is_index_valid(Utils::Vector3i const &index, Utils::Vector3i const &shape) const
Type to indicate no value in Variant.
boost::string_ref name() const
Context * context() const
Responsible context.
Variant do_call_method(std::string const &name, VariantMap const ¶ms) override
This file contains the defaults for ESPResSo.
static bool is_boundary_all_reduce(boost::mpi::communicator const &comm, std::optional< bool > const &is_boundary)
T get_value(Variant const &v)
Extract value of specific type T from a Variant.
std::unordered_map< std::string, Variant > VariantMap
boost::make_recursive_variant< None, bool, int, std::size_t, double, std::string, ObjectRef, Utils::Vector3b, Utils::Vector3i, Utils::Vector2d, Utils::Vector3d, Utils::Vector4d, std::vector< int >, std::vector< double >, std::vector< boost::recursive_variant_ >, std::unordered_map< int, boost::recursive_variant_ >, std::unordered_map< std::string, boost::recursive_variant_ > >::type Variant
Possible types for parameters.
bool is_none(Variant const &v)
T reduce_optional(boost::mpi::communicator const &comm, std::optional< T > const &result)
Reduce an optional on the head node.
static SteepestDescentParameters params
Currently active steepest descent instance.