/* ---------------------------------------------------------------------- LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator https://www.lammps.org/, Sandia National Laboratories LAMMPS development team: developers@lammps.org 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 author: Ilya Valuev (JIHT, Moscow, Russia) ------------------------------------------------------------------------- */ #include "atom_vec_wavepacket.h" #include "atom.h" #include using namespace LAMMPS_NS; /* ---------------------------------------------------------------------- */ AtomVecWavepacket::AtomVecWavepacket(LAMMPS *lmp) : AtomVec(lmp) { mass_type = PER_TYPE; molecular = Atom::ATOMIC; forceclearflag = 1; atom->electron_flag = 1; // compatible with eff atom->wavepacket_flag = atom->q_flag = atom->spin_flag = atom->eradius_flag = 1; atom->ervel_flag = atom->erforce_flag = atom->cs_flag = atom->csforce_flag = 1; atom->vforce_flag = atom->ervelforce_flag = atom->etag_flag = 1; // strings with peratom variables to include in each AtomVec method // strings cannot contain fields in corresponding AtomVec default strings // order of fields in a string does not matter // except: fields_data_atom & fields_data_vel must match data file fields_grow = {"q", "espin", "eradius", "ervel", "erforce", "cs", "csforce", "vforce", "ervelforce", "etag"}; fields_copy = {"q", "espin", "eradius", "ervel", "cs", "etag"}; fields_comm = {"eradius"}; fields_comm_vel = {"eradius", "ervel", "cs"}; fields_reverse = {"erforce", "ervelforce", "vforce", "csforce"}; fields_border = {"q", "espin", "eradius", "etag"}; fields_border_vel = {"q", "espin", "eradius", "etag", "ervel", "cs"}; fields_exchange = {"q", "espin", "eradius", "ervel", "etag", "cs"}; fields_restart = {"q", "espin", "eradius", "ervel", "etag", "cs"}; fields_create = {"q", "espin", "eradius", "ervel", "etag", "cs"}; fields_data_atom = {"id", "type", "q", "espin", "eradius", "etag", "cs", "x"}; fields_data_vel = {"id", "v", "ervel"}; setup_fields(); } /* ---------------------------------------------------------------------- set local copies of all grow ptrs used by this class, except defaults needed in replicate when 2 atom classes exist and it calls pack_restart() ------------------------------------------------------------------------- */ void AtomVecWavepacket::grow_pointers() { q = atom->q; spin = atom->spin; eradius = atom->eradius; ervel = atom->ervel; erforce = atom->erforce; } /* ---------------------------------------------------------------------- clear extra forces starting at atom N nbytes = # of bytes to clear for a per-atom vector ------------------------------------------------------------------------- */ void AtomVecWavepacket::force_clear(int n, size_t nbytes) { memset(&erforce[n], 0, nbytes); } /* ---------------------------------------------------------------------- initialize non-zero atom quantities make each atom a proton ------------------------------------------------------------------------- */ void AtomVecWavepacket::create_atom_post(int ilocal) { q[ilocal] = 1.0; } /* ---------------------------------------------------------------------- modify what AtomVec::data_atom() just unpacked or initialize other atom quantities ------------------------------------------------------------------------- */ void AtomVecWavepacket::data_atom_post(int ilocal) { ervel[ilocal] = 0.0; } /* ---------------------------------------------------------------------- assign an index to named atom property and return index return -1 if name is unknown to this atom style ------------------------------------------------------------------------- */ int AtomVecWavepacket::property_atom(const std::string &name) { if (name == "espin") return 0; if (name == "spin") return 0; // backward compatibility if (name == "eradius") return 1; if (name == "ervel") return 2; if (name == "erforce") return 3; return -1; } /* ---------------------------------------------------------------------- pack per-atom data into buf for ComputePropertyAtom index maps to data specific to this atom style ------------------------------------------------------------------------- */ void AtomVecWavepacket::pack_property_atom(int index, double *buf, int nvalues, int groupbit) { int nlocal = atom->nlocal; int n = 0; if (index == 0) { for (int i = 0; i < nlocal; i++) { if (mask[i] & groupbit) buf[n] = spin[i]; else buf[n] = 0.0; n += nvalues; } } else if (index == 1) { for (int i = 0; i < nlocal; i++) { if (mask[i] & groupbit) buf[n] = eradius[i]; else buf[n] = 0.0; n += nvalues; } } else if (index == 2) { for (int i = 0; i < nlocal; i++) { if (mask[i] & groupbit) buf[n] = ervel[i]; else buf[n] = 0.0; n += nvalues; } } else if (index == 3) { for (int i = 0; i < nlocal; i++) { if (mask[i] & groupbit) buf[n] = erforce[i]; else buf[n] = 0.0; n += nvalues; } } }