Files
lammps/src/KOKKOS/fix_nvt_sllod_kokkos.cpp
2024-10-04 13:04:20 -06:00

207 lines
7.2 KiB
C++

// clang-format off
/* ----------------------------------------------------------------------
LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator
https://www.lammps.org/
LAMMPS development team: developers@lammps.org, Sandia National Laboratories
Copyright (2003) Sandia Corporation. Under the terms of Contract
DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains
certain rights in this software. This software is distributed under
the GNU General Public License.
See the README file in the top-level LAMMPS directory.
------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------
Contributing authors: Emily Kahl (Uni. of QLD, e.kahl@uq.edu.au)
------------------------------------------------------------------------- */
#include "fix_nvt_sllod_kokkos.h"
#include "atom_kokkos.h"
#include "atom_masks.h"
#include "compute.h"
#include "domain.h"
#include "error.h"
#include "fix_deform.h"
#include "group.h"
#include "kokkos_few.h"
#include "math_extra.h"
#include "modify.h"
#include <cstring>
using namespace LAMMPS_NS;
using namespace FixConst;
/* ---------------------------------------------------------------------- */
template<class DeviceType>
FixNVTSllodKokkos<DeviceType>::FixNVTSllodKokkos(LAMMPS *lmp, int narg, char **arg) :
FixNHKokkos<DeviceType>(lmp, narg, arg)
{
atomKK = (AtomKokkos *) this->atom;
this->kokkosable = 1;
this->domainKK = (DomainKokkos *) this->domain;
if (!this->tstat_flag)
this->error->all(FLERR,"Temperature control must be used with fix nvt/sllod/kk");
if (this->pstat_flag)
this->error->all(FLERR,"Pressure control can not be used with fix nvt/sllod/kk");
this->psllod_flag = 0;
if (this->mtchain_default_flag) this->mtchain = 1;
// select SLLOD/p-SLLOD/g-SLLOD variant
int iarg = 3;
while (iarg < narg) {
if (strcmp(arg[iarg],"psllod") == 0) {
if (iarg+2 > narg) utils::missing_cmd_args(FLERR, "fix nvt/sllod/kk psllod", this->error);
this->psllod_flag = utils::logical(FLERR,arg[iarg+1],false,this->lmp);
iarg += 2;
} else iarg++;
}
this->id_temp = utils::strdup(std::string(this->id)+"_temp");
this->modify->add_compute(fmt::format("{} {} temp/deform/kk",this->id_temp,this->group->names[this->igroup]));
this->tcomputeflag = 1;
this->nondeformbias = 0;
this->execution_space = ExecutionSpaceFromDevice<DeviceType>::space;
this->datamask_read = EMPTY_MASK;
this->datamask_modify = EMPTY_MASK;
}
/* ---------------------------------------------------------------------- */
template<class DeviceType>
void FixNVTSllodKokkos<DeviceType>::init()
{
FixNHKokkos<DeviceType>::init();
if (!this->temperature->tempbias)
this->error->all(FLERR,"Temperature for fix nvt/sllod/kk does not have a bias");
nondeformbias = 0;
if (utils::strmatch(this->temperature->style,"^temp/deform")) nondeformbias = 1;
// check fix deform remap settings
auto deform = this->modify->get_fix_by_style("^deform");
if (deform.size() < 1)
this->error->all(FLERR,"Using fix nvt/sllod/kk with no fix deform defined");
for (auto &ifix : deform) {
auto f = dynamic_cast<FixDeform *>(ifix);
if (f && (f->remapflag != Domain::V_REMAP))
this->error->all(FLERR,"Using fix ntv/sllod/kk with inconsistent fix deform remap option");
}
}
/* ----------------------------------------------------------------------
perform half-step scaling of velocities
-----------------------------------------------------------------------*/
template<class DeviceType>
void FixNVTSllodKokkos<DeviceType>::nh_v_temp()
{
// remove and restore bias = streaming velocity = Hrate*lamda + Hratelo
// thermostat thermal velocity only
// vdelu = SLLOD correction = Hrate*Hinv*vthermal
// for non temp/deform BIAS:
// calculate temperature since some computes require temp
// computed on current nlocal atoms to remove bias
if (nondeformbias) {
atomKK->sync(this->temperature->execution_space,this->temperature->datamask_read);
this->temperature->compute_scalar();
atomKK->modified(this->temperature->execution_space,this->temperature->datamask_modify);
atomKK->sync(this->execution_space,this->temperature->datamask_modify);
}
v = atomKK->k_v.view<DeviceType>();
mask = atomKK->k_mask.view<DeviceType>();
int nlocal = atomKK->nlocal;
if (this->igroup == atomKK->firstgroup) nlocal = atomKK->nfirst;
double h_two[6];
MathExtra::multiply_shape_shape(this->domain->h_rate,this->domain->h_inv,h_two);
d_h_two = Few<double, 6>(h_two);
if ((int)vdelu.extent(0) < atomKK->nmax)
vdelu = typename AT::t_v_array(Kokkos::NoInit("nvt/sllod/kk:vdelu"), atomKK->nmax);
if (!this->psllod_flag) {
if (this->temperature->kokkosable) this->temperature->remove_bias_all_kk();
else {
atomKK->sync(this->temperature->execution_space,this->temperature->datamask_read);
this->temperature->remove_bias_all();
atomKK->modified(this->temperature->execution_space,this->temperature->datamask_modify);
atomKK->sync(this->execution_space,this->temperature->datamask_modify);
}
}
atomKK->sync(this->execution_space,V_MASK | MASK_MASK);
this->copymode = 1;
Kokkos::parallel_for(Kokkos::RangePolicy<DeviceType, TagFixNVTSllod_temp1>(0,nlocal),*this);
this->copymode = 0;
if (this->psllod_flag) {
if (this->temperature->kokkosable) this->temperature->remove_bias_all_kk();
else {
atomKK->sync(this->temperature->execution_space,this->temperature->datamask_read);
this->temperature->remove_bias_all();
atomKK->modified(this->temperature->execution_space,this->temperature->datamask_modify);
atomKK->sync(this->execution_space,this->temperature->datamask_modify);
}
}
atomKK->sync(this->execution_space,V_MASK | MASK_MASK);
this->copymode = 1;
Kokkos::parallel_for(Kokkos::RangePolicy<DeviceType, TagFixNVTSllod_temp2>(0,nlocal),*this);
this->copymode = 0;
atomKK->modified(this->execution_space,V_MASK);
if (this->temperature->kokkosable) this->temperature->restore_bias_all();
else {
atomKK->sync(this->temperature->execution_space,this->temperature->datamask_read);
this->temperature->restore_bias_all();
atomKK->modified(this->temperature->execution_space,this->temperature->datamask_modify);
atomKK->sync(this->execution_space,this->temperature->datamask_modify);
}
}
template<class DeviceType>
KOKKOS_INLINE_FUNCTION
void FixNVTSllodKokkos<DeviceType>::operator()(TagFixNVTSllod_temp1, const int &i) const {
if (mask[i] & this->groupbit) {
vdelu(i,0) = d_h_two[0]*v(i,0) + d_h_two[5]*v(i,1) + d_h_two[4]*v(i,2);
vdelu(i,1) = d_h_two[1]*v(i,1) + d_h_two[3]*v(i,2);
vdelu(i,2) = d_h_two[2]*v(i,2);
}
}
template<class DeviceType>
KOKKOS_INLINE_FUNCTION
void FixNVTSllodKokkos<DeviceType>::operator()(TagFixNVTSllod_temp2, const int &i) const {
if (mask[i] & this->groupbit) {
v(i,0) = v(i,0)*this->factor_eta - this->dthalf*vdelu(i,0);
v(i,1) = v(i,1)*this->factor_eta - this->dthalf*vdelu(i,1);
v(i,2) = v(i,2)*this->factor_eta - this->dthalf*vdelu(i,2);
}
}
namespace LAMMPS_NS {
template class FixNVTSllodKokkos<LMPDeviceType>;
#ifdef LMP_KOKKOS_GPU
template class FixNVTSllodKokkos<LMPHostType>;
#endif
}