29#include "constraints/Constraints.hpp"
38#include "system/System.hpp"
55 1ul,
static_cast<std::size_t
>(bonded_ias->get_next_key()),
56 nonbonded_ias->get_max_seen_particle_type());
58 if (long_range_interactions_sanity_checks()) {
63#if defined(ESPRESSO_CUDA) and \
64 (defined(ESPRESSO_ELECTROSTATICS) or defined(ESPRESSO_DIPOLES))
65 gpu->clear_energy_on_device();
70 auto const local_parts = cell_structure->local_particles();
77 auto const coulomb_kernel = coulomb.pair_energy_kernel();
78 auto const dipoles_kernel = dipoles.pair_energy_kernel();
80#ifdef ESPRESSO_CALIPER
84 cell_structure->get_verlet_skin(),
85 get_interaction_range(),
90 get_interaction_range(), propagation->integ_switch);
93 static_cast<std::size_t
>(bonded_ias->get_next_key()),
94 std::size_t(nonbonded_ias->get_max_seen_particle_type() + 1)};
96 using exec = Kokkos::DefaultExecutionSpace;
97 Kokkos::View<double **, Kokkos::LayoutRight> local_energy(
99 auto const &unique_particles = cell_structure->get_unique_particles();
100 auto const n_particles =
static_cast<int>(unique_particles.size());
101 Kokkos::View<int *> mol_id_view(
"mol_id", n_particles);
102 auto mol_id_host = Kokkos::create_mirror_view(mol_id_view);
103 for (
int i = 0; i < n_particles; ++i) {
115 cell_structure->get_unique_particles(),
118 cell_structure->get_aosoa(),
123 auto &
bs = cell_structure->bond_state();
125 layout, cell_structure->get_aosoa()};
136 propagation->integ_switch);
139 nonbonded_ias->get_max_seen_particle_type() + 1);
140#ifdef ESPRESSO_CALIPER
144#ifdef ESPRESSO_ELECTROSTATICS
146 obs_energy.coulomb[1] = coulomb.calc_energy_long_range();
149#ifdef ESPRESSO_DIPOLES
151 obs_energy.dipolar[1] = dipoles.calc_energy_long_range();
156#if defined(ESPRESSO_CUDA) and \
157 (defined(ESPRESSO_ELECTROSTATICS) or defined(ESPRESSO_DIPOLES))
158 auto const energy_host = gpu->copy_energy_to_host();
171 if (cell_structure->get_resort_particles()) {
172 cell_structure->update_ghosts_and_resort_particle(get_global_ghost_flags());
176 if (
auto const p = cell_structure->get_local_particle(pid)) {
177 auto const coulomb_kernel = coulomb.pair_energy_kernel();
180#ifdef ESPRESSO_EXCLUSIONS
184 auto const &
ia_params = nonbonded_ias->get_ia_param(p.type(),
p1.type());
187 *bonded_ias, coulomb,
nullptr);
189 cell_structure->run_on_particle_short_range_neighbors(*p, kernel);
196 if (cell_structure->get_resort_particles()) {
197 cell_structure->update_ghosts_and_resort_particle(get_global_ghost_flags());
199 Particle const *p = cell_structure->get_local_particle(pid);
202 auto const &
iaparams = *bonded_ias->at(bond_id);
205 auto const coulomb_kernel = coulomb.pair_energy_kernel();
void bond_broken_error(int id, std::span< const int > partner_ids)
double particle_short_range_energy_contribution(int pid)
Compute the short-range energy of a particle.
std::optional< double > particle_bond_energy(int pid, int bond_id, std::vector< int > partners)
Compute the energy of a given bond which has to exist on the given particle.
std::shared_ptr< Observable_stat > calculate_energy()
Calculate the total energy.
Returns true if the particles are to be considered for short range interactions.
cudaStream_t stream[1]
CUDA streams for parallel computing on CPU and GPU.
constexpr double inactive_cutoff
Special cutoff value for an inactive interaction.
const T * get_ptr(std::optional< T > const &opt)
static void reduce_cabana_energy(Kokkos::View< double **, Kokkos::LayoutRight > const &local_energy, EnergyBinLayout const &layout, Observable_stat &obs, BondedInteractionsMap const &bonded_ias, int n_types)
std::optional< double > calc_bonded_energy(Bonded_IA_Parameters const &iaparams, Particle const &p1, std::span< Particle * > partners, BoxGeometry const &box_geo, Coulomb::ShortRangeEnergyKernel::kernel_type const *kernel)
double translational_kinetic_energy(Particle const &p)
Calculate kinetic energies from translation for one particle.
double rotational_kinetic_energy(Particle const &p)
Calculate kinetic energies from rotation for one particle.
double calc_non_bonded_pair_energy(Particle const &p1, Particle const &p2, IA_parameters const &ia_params, Utils::Vector3d const &d, double const dist, BondedInteractionsMap const &bonded_ias, Coulomb::Solver const &coulomb, Coulomb::ShortRangeEnergyKernel::kernel_type const *coulomb_kernel)
Calculate non-bonded energies between a pair of particles.
bool do_nonbonded(Particle const &p1, Particle const &p2)
Determine if the non-bonded interactions between p1 and p2 should be calculated.
Various procedures concerning interactions between particles.
ESPRESSO_ATTR_ALWAYS_INLINE void update_cabana_state(CellStructure &cell_structure, auto const &verlet_criterion, double const pair_cutoff, auto const integ_switch)
void cabana_short_range(auto const &pair_bonds_kernel, auto const &angle_bonds_kernel, auto const &dihedral_bonds_kernel, auto const &nonbonded_kernel, CellStructure &cell_structure, double pair_cutoff, double bond_cutoff, auto const &verlet_criterion, auto const integ_switch)
Exception indicating that a particle id could not be resolved.
Struct holding all information for one particle.