26#include "communication.hpp"
28#include "system/System.hpp"
33#include <boost/mpi/collectives/all_reduce.hpp>
34#include <boost/serialization/utility.hpp>
54 if (boost::get<OifGlobalForcesBond>(bonded_ias.
at(bond_id).get())) {
84 auto const *
bond_ptr = bonded_ias.
at(bond_id).get();
85 if (
auto const *
bond = boost::get<OifGlobalForcesBond>(
bond_ptr)) {
123void OifGlobal::run_force_kernel() {
125 auto &box_geo = *
system.box_geo;
126 auto &bonded_ias = *
system.bonded_ias;
127 auto &cell_structure = *
system.cell_structure;
131 auto const local =
calc_oif_mesh(i, box_geo, cell_structure, bonded_ias);
132 auto const global = boost::mpi::all_reduce(
comm_cart, local, std::plus());
134 auto const volume = std::abs(
global[1]);
Vector implementation and trait types for boost qvm interoperability.
Data structures for bonded interactions.
container for bonded interactions.
mapped_type at(key_type const &key) const
auto unfolded_position(Utils::Vector3d const &pos, Utils::Vector3i const &image_box) const
Unfold particle coordinates to image box.
Utils::Vector< T, 3 > get_mi_vector(const Utils::Vector< T, 3 > &a, const Utils::Vector< T, 3 > &b) const
Get the minimum-image vector between two coordinates.
cudaStream_t stream[1]
CUDA streams for parallel computing on CPU and GPU.
boost::mpi::communicator comm_cart
The communicator.
double area_triangle(const Vector3d &P1, const Vector3d &P2, const Vector3d &P3)
Computes the area of triangle between vectors P1,P2,P3, by computing the cross product P1P2 x P1P3 an...
Vector3d get_n_triangle(const Vector3d &P1, const Vector3d &P2, const Vector3d &P3)
Computes the normal vector of a triangle.
static void add_oif_global_forces(double area, double volume, int molType, BoxGeometry const &box_geo, CellStructure &cs, BondedInteractionsMap const &bonded_ias)
Distribute the OIF global forces to all particles in the mesh.
static auto calc_oif_mesh(int molType, BoxGeometry const &box_geo, CellStructure &cs, BondedInteractionsMap const &bonded_ias)
Calculate the mesh volume and area.
Routines to calculate the OIF global forces for a particle triple (triangle from mesh).
Describes a cell structure / cell system.
void bond_loop(BondKernel const &bond_kernel)
Bonded pair loop.
Struct holding all information for one particle.