Files
lammps/src/ELECTRODE/fix_electrode_conp.cpp
2024-03-04 09:31:07 -05:00

1624 lines
57 KiB
C++

/* ----------------------------------------------------------------------
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 authors: Ludwig Ahrens-Iwers (TUHH), Shern Tee (UQ), Robert Meißner (TUHH)
------------------------------------------------------------------------- */
#include "fix_electrode_conp.h"
#include "atom.h"
#include "citeme.h"
#include "comm.h"
#include "domain.h"
#include "electrode_math.h"
#include "electrode_matrix.h"
#include "electrode_vector.h"
#include "error.h"
#include "force.h"
#include "group.h"
#include "input.h"
#include "math_const.h"
#include "memory.h"
#include "modify.h"
#include "neigh_list.h"
#include "neigh_request.h"
#include "neighbor.h"
#include "pair.h"
#include "text_file_reader.h"
#include "variable.h"
#include <algorithm>
#include <cassert>
#include <cmath>
#include <cstring>
#include <exception>
#include <memory>
#include <utility>
using namespace LAMMPS_NS;
using namespace MathConst;
static constexpr double SMALL = 1e-16;
extern "C" {
void dgetrf_(const int *M, const int *N, double *A, const int *lda, int *ipiv, int *info);
void dgetri_(const int *N, double *A, const int *lda, const int *ipiv, double *work,
const int *lwork, int *info);
}
static const char cite_fix_electrode[] =
"fix electrode command:\n\n"
"@article{Ahrens2022\n"
"author = {Ahrens-Iwers, Ludwig J.V. and Janssen, Mahijs and Tee, Shern R. and Mei{\\ss}ner, "
"Robert H.},\n"
"doi = {10.1063/5.0099239},\n"
"title = {{ELECTRODE: An electrochemistry package for LAMMPS}},\n"
"journal = {The Journal of Chemical Physics},\n"
"year = {2022}\n"
"volume = {157},\n"
"pages = {084801},\n"
"}\n";
// 0 1 2 3 4
// fix fxupdate group1 electrode/conp pot1 eta couple group2 pot2
FixElectrodeConp::FixElectrodeConp(LAMMPS *lmp, int narg, char **arg) :
Fix(lmp, narg, arg), elyt_vector(nullptr), elec_vector(nullptr), capacitance(nullptr),
elastance(nullptr), pair(nullptr), mat_neighlist(nullptr), vec_neighlist(nullptr),
recvcounts(nullptr), displs(nullptr), iele_gathered(nullptr), buf_gathered(nullptr),
potential_i(nullptr), potential_iele(nullptr)
{
if (lmp->citeme) lmp->citeme->add(cite_fix_electrode);
// fix.h output flags
scalar_flag = 1;
vector_flag = 1;
extscalar = 1;
extvector = 0;
extarray = 0;
bool default_algo = true;
algo = Algo::MATRIX_INV;
matrix_algo = true;
cg_threshold = 0.;
write_inv = write_mat = write_vec = read_inv = read_mat = false;
symm = false;
ffield = false;
thermo_time = 0.;
top_group = 0;
intelflag = false;
tfflag = false;
etaflag = false;
timer_flag = false;
update_time = 0;
mult_time = 0;
n_call = n_cg_step = 0;
qtotal = 0.;
qtotal_var_style = VarStyle::UNSET;
// read fix command
fixname = std::string(arg[0]);
groups = std::vector<int>(1, igroup);
group_bits = std::vector<int>(1, groupbit);
group_psi_var_names = std::vector<std::string>(1);
group_psi_var_styles = std::vector<VarStyle>(1, VarStyle::CONST);
group_psi_const = std::vector<double>(1);
etypes_neighlists = false;
if (strstr(arg[3], "v_") == arg[3]) {
std::string vname = arg[3];
group_psi_var_names[0] = vname.substr(2);
group_psi_var_styles[0] = VarStyle::EQUAL;
} else
group_psi_const[0] = utils::numeric(FLERR, arg[3], false, lmp);
char *eta_str = arg[4];
eta = utils::numeric(FLERR, eta_str, false, lmp);
int iarg = 5;
while (iarg < narg) {
if ((strcmp(arg[iarg], "couple") == 0)) {
if (iarg + 3 > narg) error->all(FLERR, "Need two arguments after couple keyword");
int id = group->find(arg[++iarg]);
if (id < 0) error->all(FLERR, "Group {} does not exist", arg[iarg]);
groups.push_back(id);
group_bits.push_back(group->bitmask[id]);
++iarg;
if (strstr(arg[iarg], "v_") == arg[iarg]) {
std::string vname = arg[iarg];
group_psi_var_names.push_back(vname.substr(2));
group_psi_var_styles.push_back(VarStyle::EQUAL);
group_psi_const.push_back(0.);
} else {
std::string null;
group_psi_var_names.push_back(null);
group_psi_var_styles.push_back(VarStyle::CONST);
group_psi_const.push_back(utils::numeric(FLERR, arg[iarg], false, lmp));
}
} else if ((strcmp(arg[iarg], "algo") == 0)) {
if (!default_algo) error->one(FLERR, "Algorithm can be set only once");
default_algo = false;
if (iarg + 2 > narg) error->all(FLERR, "Need one argument after algo command");
char *algo_arg = arg[++iarg];
bool cg_algo = false;
if ((strcmp(algo_arg, "mat_inv") == 0)) {
algo = Algo::MATRIX_INV;
matrix_algo = true;
} else if ((strcmp(algo_arg, "mat_cg") == 0)) {
algo = Algo::MATRIX_CG;
matrix_algo = true;
cg_algo = true;
} else if ((strcmp(algo_arg, "cg") == 0)) {
algo = Algo::CG;
matrix_algo = false;
cg_algo = true;
} else {
error->all(FLERR, "Unknown algo keyword {}", algo_arg);
}
if (cg_algo) {
if (iarg + 2 > narg) error->all(FLERR, "Need one argument after algo *cg command");
cg_threshold = utils::numeric(FLERR, arg[++iarg], false, lmp);
}
} else if ((strncmp(arg[iarg], "write", 5) == 0)) {
if (iarg + 2 > narg) error->all(FLERR, "Need one argument after write command");
if ((strcmp(arg[iarg], "write_inv") == 0)) { // capacitance matrix
write_inv = true;
output_file_inv = arg[++iarg];
} else if ((strcmp(arg[iarg], "write_mat") == 0)) { // elastance matrix
write_mat = true;
output_file_mat = arg[++iarg];
} else if ((strcmp(arg[iarg], "write_vec") == 0)) { // b vector
write_vec = true;
output_file_vec = arg[++iarg];
} else {
error->all(FLERR, "Illegal fix {} command with write", style);
}
} else if ((strncmp(arg[iarg], "read", 4) == 0)) {
if (iarg + 2 > narg) error->all(FLERR, "Need one argument after read command");
if ((strcmp(arg[iarg], "read_inv") == 0)) {
read_inv = true;
input_file_inv = arg[++iarg];
} else if ((strcmp(arg[iarg], "read_mat") == 0)) {
read_mat = true;
input_file_mat = arg[++iarg];
} else {
error->all(FLERR, "Illegal fix {} command with read", style);
}
} else if ((strcmp(arg[iarg], "temp") == 0)) {
if (iarg + 4 > narg) error->all(FLERR, "Need three arguments after temp command");
if (!utils::strmatch(style, "electrode/thermo"))
error->all(FLERR, "temp keyword not available for fix {}", style);
thermo_temp = force->boltz / force->qe2f * utils::numeric(FLERR, arg[++iarg], false, lmp);
thermo_time = utils::numeric(FLERR, arg[++iarg], false, lmp);
thermo_init = utils::inumeric(FLERR, arg[++iarg], false, lmp);
} else if ((strcmp(arg[iarg], "qtotal") == 0)) {
if (iarg + 2 > narg) error->all(FLERR, "Need one argument after qtotal keyword");
if (strcmp(this->style, "electrode/conq") == 0)
error->all(FLERR, "qtotal keyword not available for electrode/conq");
++iarg;
if (strstr(arg[iarg], "v_") == arg[iarg]) {
std::string vname = arg[iarg];
qtotal_var_name = vname.substr(2);
qtotal_var_style = VarStyle::EQUAL;
} else {
qtotal = utils::numeric(FLERR, arg[iarg], false, lmp);
qtotal_var_style = VarStyle::CONST;
}
} else if ((strcmp(arg[iarg], "eta") == 0)) {
if (iarg + 2 > narg) error->all(FLERR, "Need two arguments after eta command");
etaflag = true;
int is_double, cols, ghost;
eta_index = atom->find_custom_ghost(arg[++iarg] + 2, is_double, cols, ghost);
if (eta_index == -1)
error->all(FLERR, "eta keyword requires name of previously defined property");
if (!is_double) error->all(FLERR, "eta keyword requires double-valued property/atom vector");
if (cols != 0) error->all(FLERR, "eta keyword requires property/atom vector not an array");
if (!ghost) error->all(FLERR, "eta keyword requires property/atom fix with ghost on");
}
// toggle parameters
else if ((strcmp(arg[iarg], "etypes") == 0)) {
etypes_neighlists = utils::logical(FLERR, arg[++iarg], false, lmp);
} else if ((strncmp(arg[iarg], "symm", 4) == 0)) {
symm = utils::logical(FLERR, arg[++iarg], false, lmp);
} else if ((strcmp(arg[iarg], "ffield") == 0)) {
ffield = utils::logical(FLERR, arg[++iarg], false, lmp);
} else {
error->all(FLERR, "Unknown keyword {} for fix {} command", arg[iarg], style);
}
iarg++;
}
if (qtotal_var_style != VarStyle::UNSET) {
if (symm) error->all(FLERR, "{} cannot use qtotal keyword with symm on", this->style);
}
// computatonal potential
group_psi = std::vector<double>(groups.size());
// union of all coupled groups
std::string union_group = "conp_group";
std::string group_cmd = union_group + " union";
for (int g : groups) {
group_cmd += " ";
group_cmd += group->names[g];
}
group->assign(group_cmd);
igroup = group->find(union_group);
if (igroup < 0) error->all(FLERR, "Failed to create union of groups");
// construct computes
need_array_compute = !(read_inv || read_mat) && matrix_algo;
need_elec_vector = algo == Algo::CG;
elyt_vector = new ElectrodeVector(lmp, igroup, igroup, eta, true);
if (need_elec_vector) elec_vector = new ElectrodeVector(lmp, igroup, igroup, eta, false);
assert(groups.size() == group_bits.size());
assert(groups.size() == group_psi.size());
assert(groups.size() == group_psi_const.size());
assert(groups.size() == group_psi_var_styles.size());
assert(groups.size() == group_psi_var_names.size());
assert(igroup == elyt_vector->igroup);
if (need_elec_vector) assert(igroup == elec_vector->igroup);
if (algo != Algo::MATRIX_INV) {
if (read_inv || write_inv)
error->all(
FLERR,
"Selected algorithm does not use inverted matrix. Cannot read/write inverted matrix.");
}
if (!matrix_algo && (read_mat || write_mat || write_vec)) {
error->all(FLERR,
"Selected algorithm does not use matrix. Cannot read/write matrix or vector.");
}
if (read_inv && read_mat) error->all(FLERR, "Cannot read matrix from two files");
if (write_mat && read_inv)
error->all(FLERR, "Cannot write elastance matrix if reading capacitance matrix from file");
num_of_groups = static_cast<int>(groups.size());
size_vector = num_of_groups;
array_flag = !!(algo == Algo::MATRIX_INV);
if (array_flag) {
size_array_rows = num_of_groups;
size_array_cols = 2 + 2 * num_of_groups;
}
// check groups are consistent
int *mask = atom->mask;
int groups_overlap = 0;
for (int i = 0; i < atom->nlocal; i++) {
int m = mask[i];
int matches = 0;
for (int bit : group_bits)
if (m & bit) matches++;
if (matches > 1) {
groups_overlap++;
} else {
assert(!matches == !(m & group->bitmask[igroup]));
}
}
MPI_Allreduce(MPI_IN_PLACE, &groups_overlap, 1, MPI_INT, MPI_SUM, world);
if (groups_overlap) error->all(FLERR, "Groups may not overlap");
groupbit = group->bitmask[igroup];
ngroup = group->count(igroup);
if (matrix_algo) {
memory->create(iele_gathered, ngroup, "FixElectrode:iele_gathered");
memory->create(buf_gathered, ngroup, "FixElectrode:buf_gathered");
memory->create(potential_iele, ngroup, "FixElectrode:potential_iele");
}
atom->add_callback(Atom::GROW); // atomvec track local electrode atoms
comm_reverse = 1;
comm_forward = 1;
nlocalele = 0;
nmax = 0;
}
/* ---------------------------------------------------------------------- */
int FixElectrodeConp::modify_param(int narg, char **arg)
{
if (strcmp(arg[0], "tf") == 0) {
if (narg < 4) error->all(FLERR, "Incorrect number of arguments for fix_modify {}", style);
tfflag = true;
// read atom type, Thomas-Fermi length, and voronoi volume (reciprocal
// number density)
int const type = utils::inumeric(FLERR, arg[1], false, lmp);
double const len = utils::numeric(FLERR, arg[2], false, lmp);
double const voronoi = utils::numeric(FLERR, arg[3], false, lmp);
// check type exists and is completely in electrode
int not_in_ele = 0;
int in_ele = 0;
for (int i = 0; i < atom->nlocal; i++) {
if (atom->type[i] == type) {
if (atom->mask[i] & groupbit)
in_ele++;
else
not_in_ele++;
}
}
MPI_Allreduce(MPI_IN_PLACE, &in_ele, 1, MPI_INT, MPI_SUM, world);
if (in_ele == 0) error->all(FLERR, "No atoms of type in electrode");
MPI_Allreduce(MPI_IN_PLACE, &not_in_ele, 1, MPI_INT, MPI_SUM, world);
if (not_in_ele)
error->warning(FLERR,
"Not all atoms of type in electrode; Thomas-Fermi parameters will be ignored "
"for electrolyte");
// insert into map, replace if already exists
auto entry = tf_types.find(type);
if (entry != end(tf_types)) tf_types.erase(entry);
tf_types.insert(std::pair<int, double>(type, MY_4PI * len * len / voronoi));
return 4;
} else if (strcmp(arg[0], "timer") == 0) {
if (narg < 2) error->all(FLERR, "Incorrect number of arguments for fix_modify {} timer", style);
timer_flag = utils::logical(FLERR, arg[1], false, lmp);
return 2;
} else
error->all(FLERR, "Unknown argument {} for fix_modify {}", arg[0], style);
return 0;
}
/* ---------------------------------------------------------------------- */
int FixElectrodeConp::modify_param(const std::string &param_str)
{
auto args = utils::split_words(param_str);
char **newarg = new char *[args.size()];
int i = 0;
for (const auto &arg : args) { newarg[i++] = (char *) arg.c_str(); }
int tmp = modify_param(args.size(), newarg);
delete[] newarg;
return tmp;
}
/* ---------------------------------------------------------------------- */
int FixElectrodeConp::groupnum_from_name(char *groupname)
{
int id = group->find(groupname);
if (id < 0) error->all(FLERR, "Group {} does not exist", groupname);
for (int g = 0; g < num_of_groups; g++) {
if (groups[g] == id) return g;
}
error->all(FLERR, "Group {} is not coupled by fix electrode", groupname);
return -1; // dummy return value
}
/* ---------------------------------------------------------------------- */
void FixElectrodeConp::init()
{
pair = nullptr; // not sure if needed -- remove if unnecessary
pair = (Pair *) force->pair_match("coul", 0);
if (pair == nullptr) { // couldn't find a pair with name coul -- maybe hybrid
// return 1st hybrid substyle containing 'coul'
pair = (Pair *) force->pair_match("coul", 0, 1);
}
if (pair == nullptr) error->all(FLERR, "Fix electrode couldn't find a Coulombic pair style");
// error if more than one fix electrode/*
int count = 0;
for (int i = 0; i < modify->nfix; i++)
if (strncmp(modify->fix[i]->style, "electrode", 9) == 0) count++;
if (count > 1) error->all(FLERR, "More than one fix electrode");
// make sure electrode atoms are not integrated if a matrix is used for electrode-electrode interaction
int const nlocal = atom->nlocal;
int *mask = atom->mask;
Fix **fix = modify->fix;
if (matrix_algo) {
std::vector<char *> integrate_ids = std::vector<char *>();
for (int i = 0; i < modify->nfix; i++) {
if (fix[i]->time_integrate == 0) continue;
int electrode_mover = 0;
int fix_groupbit = fix[i]->groupbit;
for (int j = 0; j < nlocal; j++)
if ((mask[j] & fix_groupbit) && (mask[j] & groupbit)) electrode_mover = 1;
MPI_Allreduce(MPI_IN_PLACE, &electrode_mover, 1, MPI_INT, MPI_SUM, world);
if (electrode_mover && comm->me == 0) integrate_ids.push_back(fix[i]->id);
}
if (comm->me == 0)
for (char *fix_id : integrate_ids)
error->warning(
FLERR,
"Electrode atoms are integrated by fix {}, but fix electrode is using a matrix method. "
"For "
"mobile electrodes use the conjugate gradient algorithm without matrix ('algo cg').",
fix_id);
}
// check for package intel
if (etypes_neighlists)
request_etypes_neighlists();
else {
auto Req = neighbor->add_request(this);
if (intelflag) Req->enable_intel();
}
}
/* ---------------------------------------------------------------------- */
void FixElectrodeConp::init_list(int id, NeighList *ptr)
{
if (etypes_neighlists) {
if (id == 1)
mat_neighlist = ptr;
else if (id == 2)
vec_neighlist = ptr;
} else
mat_neighlist = vec_neighlist = ptr;
}
/* ---------------------------------------------------------------------- */
void FixElectrodeConp::post_constructor()
{
if (!ffield) return;
// ffield: test conditions and set up efield
if (num_of_groups != 2) error->all(FLERR, "Number of electrodes must be two with ffield yes");
if (!symm) error->all(FLERR, "Keyword symm off not allowed with ffield yes");
if (domain->zperiodic == 0 || domain->boundary[2][0] != 0 || domain->boundary[2][1] != 0)
error->all(FLERR, "Periodic z boundaries required with ffield yes");
top_group = get_top_group();
// assign variable names:
std::string var_vtop = fixname + "_ffield_vtop";
std::string var_vbot = fixname + "_ffield_vbot";
std::string var_efield = fixname + "_ffield_zfield";
// set variables:
input->variable->set(fmt::format("{} equal f_{}[{}]", var_vbot, fixname, 1 + 1 - top_group));
input->variable->set(fmt::format("{} equal f_{}[{}]", var_vtop, fixname, 1 + top_group));
input->variable->set(fmt::format("{} equal (v_{}-v_{})/lz", var_efield, var_vbot, var_vtop));
// check for other efields and warn if found
if (modify->get_fix_by_style("^efield").size() > 0 && comm->me == 0)
error->warning(FLERR, "Other efield fixes found -- please make sure this is intended!");
// call fix command:
// fix [varstem]_efield all efield 0.0 0.0 [var_vdiff]/lz
std::string efield_call = fixname + "_efield all efield 0.0 0.0 v_" + var_efield;
modify->add_fix(efield_call, 1);
}
/* ---------------------------------------------------------------------- */
void FixElectrodeConp::setup_post_neighbor()
{
int const nlocal = atom->nlocal;
int *mask = atom->mask;
tagint *tag = atom->tag;
// if Thomas-Fermi, make sure all electrode atoms have parameters
if (tfflag) {
int unset_tf = 0;
int *type = atom->type;
for (int i = 0; i < nlocal; i++) {
if ((groupbit & mask[i]) && (tf_types.count(type[i]) == 0)) unset_tf++;
}
MPI_Allreduce(MPI_IN_PLACE, &unset_tf, 1, MPI_INT, MPI_SUM, world);
if (unset_tf)
error->all(FLERR, "Thomas-Fermi parameters not set for all types in fix {}", style);
}
// get equal-style variable ids:
group_psi_var_ids = std::vector<int>(num_of_groups, -1);
for (int g = 0; g < num_of_groups; g++) {
assert(group_psi_var_styles[g] != VarStyle::UNSET);
if (group_psi_var_styles[g] == VarStyle::CONST) continue;
const char *var_name = group_psi_var_names[g].c_str();
int var_id = input->variable->find(var_name);
if (var_id < 0) error->all(FLERR, "Variable '{}' for fix {} does not exist", var_name, style);
if (!input->variable->equalstyle(var_id))
error->all(FLERR, "Variable '{}' for fix {} is not equal-style", var_name, style);
group_psi_var_ids[g] = var_id;
}
if (qtotal_var_style == VarStyle::EQUAL) {
const char *var_name = qtotal_var_name.c_str();
int var_id = input->variable->find(var_name);
if (var_id < 0) error->all(FLERR, "Variable '{}' for fix electrode does not exist", var_name);
if (!input->variable->equalstyle(var_id))
error->all(FLERR, "Variable '{}' for fix electrode is not equal-style", var_name);
qtotal_var_id = var_id;
}
// pair and list setups:
evscale = force->qe2f / force->qqrd2e;
elyt_vector->setup(pair, vec_neighlist, timer_flag);
if (etaflag) elyt_vector->setup_eta(eta_index);
if (need_elec_vector) {
elec_vector->setup(pair, mat_neighlist, timer_flag);
if (etaflag) elec_vector->setup_eta(eta_index);
if (tfflag) elec_vector->setup_tf(tf_types);
}
auto const order_matrix = [](std::vector<tagint> order, double **mat) {
size_t n = order.size();
std::vector<std::vector<double>> ordered_mat(n, std::vector<double>(n));
for (size_t i = 0; i < n; i++) {
bigint const gi = order[i];
for (size_t j = 0; j < n; j++) { ordered_mat[gi][order[j]] = mat[i][j]; }
}
return ordered_mat;
};
if (matrix_algo) {
sd_vectors = std::vector<std::vector<double>>(num_of_groups, std::vector<double>(ngroup));
sb_charges = std::vector<double>(num_of_groups);
iele_to_group = std::vector<int>(ngroup, -1);
for (int i = 0; i < nlocal; i++) {
for (int g = 0; g < num_of_groups; g++) {
if (mask[i] & group_bits[g]) { iele_to_group[tag_to_iele[tag[i]]] = g; }
}
}
MPI_Allreduce(MPI_IN_PLACE, &iele_to_group.front(), ngroup, MPI_INT, MPI_MAX, world);
memory->destroy(elastance);
memory->destroy(capacitance);
memory->create(elastance, ngroup, ngroup, "fix_electrode:matrix");
if (read_mat)
read_from_file(input_file_mat, elastance, "elastance");
else if (!read_inv) {
if (etypes_neighlists) neighbor->build_one(mat_neighlist, 0);
auto array_compute = std::unique_ptr<ElectrodeMatrix>(new ElectrodeMatrix(lmp, igroup, eta));
array_compute->setup(tag_to_iele, pair, mat_neighlist);
if (etaflag) array_compute->setup_eta(eta_index);
if (tfflag) array_compute->setup_tf(tf_types);
array_compute->compute_array(elastance, timer_flag);
} // write_mat before proceeding
if (comm->me == 0 && write_mat) {
auto f_mat = fopen(output_file_mat.c_str(), "w");
if (f_mat == nullptr)
error->one(FLERR, "Cannot open elastance matrix file {}: {}", output_file_mat,
utils::getsyserror());
write_to_file(f_mat, taglist_bygroup, order_matrix(group_idx, elastance));
fclose(f_mat);
}
if (algo == Algo::MATRIX_INV) {
capacitance = elastance;
elastance = nullptr;
if (read_inv)
read_from_file(input_file_inv, capacitance, "capacitance");
else
invert();
if (symm) symmetrize();
// build sd vectors and macro matrices
MPI_Barrier(world);
double start = MPI_Wtime();
if (ffield) {
compute_sd_vectors_ffield();
} else {
compute_sd_vectors();
}
compute_macro_matrices();
MPI_Barrier(world);
if (timer_flag && (comm->me == 0))
utils::logmesg(lmp, "SD-vector and macro matrices time: {:.4g} s\n", MPI_Wtime() - start);
}
}
// initial charges and b vector
update_charges();
// write to files, ordered by group
if (write_vec) {
memset(potential_i, 0, atom->nmax * sizeof(double));
elyt_vector->compute_vector(potential_i);
if (force->newton_pair) comm->reverse_comm(this);
buffer_and_gather(potential_i, potential_iele);
if (comm->me == 0) {
auto f_vec = fopen(output_file_vec.c_str(), "w");
if (f_vec == nullptr)
error->one(FLERR, "Cannot open vector file {}: {}", output_file_vec, utils::getsyserror());
std::vector<std::vector<double>> vec(ngroup, std::vector<double>(1));
for (int i = 0; i < ngroup; i++) vec[group_idx[i]][0] = potential_iele[i];
write_to_file(f_vec, taglist_bygroup, vec);
fclose(f_vec);
}
}
if (write_inv) {
if (comm->me == 0) {
auto f_inv = fopen(output_file_inv.c_str(), "w");
if (f_inv == nullptr)
error->one(FLERR, "Cannot open capacitance matrix file {}: {}", output_file_inv,
utils::getsyserror());
write_to_file(f_inv, taglist_bygroup, order_matrix(group_idx, capacitance));
fclose(f_inv);
}
}
}
/* ---------------------------------------------------------------------- */
void FixElectrodeConp::setup_pre_reverse(int eflag, int /*vflag*/)
{
// correct forces for initial timestep
gausscorr(eflag, true);
self_energy(eflag);
// potential_energy(eflag); // not always part of the energy, depending on ensemble, therefore
// removed
}
/* ---------------------------------------------------------------------- */
void FixElectrodeConp::invert()
{
assert(algo == Algo::MATRIX_INV);
MPI_Barrier(world);
double invert_time = MPI_Wtime();
if (timer_flag && (comm->me == 0)) utils::logmesg(lmp, "CONP inverting matrix\n");
int m = ngroup, n = ngroup, lda = ngroup;
std::vector<int> ipiv(ngroup);
int const lwork = ngroup * ngroup;
std::vector<double> work(lwork);
int info_rf, info_ri;
dgetrf_(&m, &n, &capacitance[0][0], &lda, &ipiv.front(), &info_rf);
dgetri_(&n, &capacitance[0][0], &lda, &ipiv.front(), &work.front(), &lwork, &info_ri);
if (info_rf != 0 || info_ri != 0) error->all(FLERR, "CONP matrix inversion failed!");
MPI_Barrier(world);
if (timer_flag && (comm->me == 0))
utils::logmesg(lmp, "Invert time: {:.4g} s\n", MPI_Wtime() - invert_time);
}
/* ---------------------------------------------------------------------- */
void FixElectrodeConp::symmetrize()
{
// S matrix to enforce charge neutrality constraint
if (read_inv && comm->me == 0)
error->warning(FLERR,
"Symmetrizing matrix from file. Make sure the provided matrix has not been "
"symmetrized yet.");
assert(algo == Algo::MATRIX_INV);
std::vector<double> AinvE(ngroup, 0.);
double EAinvE = 0.0;
for (int i = 0; i < ngroup; i++) {
double AinvEtmp = 0.0;
for (int j = 0; j < ngroup; j++) { AinvEtmp += capacitance[i][j]; }
AinvE[i] = AinvEtmp; // use temp accumulator to enable vectorization
EAinvE += AinvE[i];
}
for (int i = 0; i < ngroup; i++) {
double iAinvE = AinvE[i];
for (int j = 0; j < ngroup; j++) { capacitance[i][j] -= AinvE[j] * iAinvE / EAinvE; }
}
}
/* ---------------------------------------------------------------------- */
void FixElectrodeConp::setup_pre_exchange() // create_taglist
{
nlocalele_outdated = 1; // force regather
//
if (!matrix_algo) return;
int *mask = atom->mask;
int const nlocal = atom->nlocal;
int const nprocs = comm->nprocs;
tagint *tag = atom->tag;
delete[] recvcounts;
delete[] displs;
recvcounts = new int[nprocs];
displs = new int[nprocs];
// assign a tag to each matrix index sorted by group and by tag
taglist_bygroup = std::vector<tagint>();
nlocalele = 0;
for (int gbit : group_bits) {
std::vector<tagint> taglist_local_group;
for (int i = 0; i < nlocal; i++) {
if (mask[i] & gbit) {
taglist_local_group.push_back(tag[i]);
nlocalele++;
}
}
// gather from all cpus for this group
int gnum_local = taglist_local_group.size();
MPI_Allgather(&gnum_local, 1, MPI_INT, recvcounts, 1, MPI_INT, world);
displs[0] = 0;
for (int i = 1; i < nprocs; i++) { displs[i] = displs[i - 1] + recvcounts[i - 1]; }
int const gnum = displs[nprocs - 1] + recvcounts[nprocs - 1];
std::vector<tagint> taglist_all(gnum);
MPI_Allgatherv(&taglist_local_group.front(), gnum_local, MPI_LMP_TAGINT, &taglist_all.front(),
recvcounts, displs, MPI_LMP_TAGINT, world);
std::sort(taglist_all.begin(), taglist_all.end());
for (tagint t : taglist_all) taglist_bygroup.push_back(t);
}
// taglist only sorted by tag not group, same order as in computes
taglist = taglist_bygroup;
std::sort(taglist.begin(), taglist.end());
tag_to_iele = std::unordered_map<tagint, int>();
tag_to_iele.reserve(taglist.size());
for (size_t i = 0; i < taglist.size(); i++) {
tag_to_iele.insert(std::pair<tagint, int>(taglist[i], i));
}
// group_idx allows mapping a vector that is sorted by taglist to being
// ordered by taglist_bygroup
group_idx = std::vector<tagint>(taglist_bygroup.size());
for (std::size_t i{0}; i < taglist_bygroup.size(); i++) {
group_idx[i] = (tagint) tag_to_iele[taglist_bygroup[i]];
}
// if memory_usage > 0.5 GiB, warn with expected usage
double mem_needed = memory_usage();
mem_needed /= (1024 * 1024 * 1024); // convert to GiB
if (mem_needed > 0.5 && comm->me == 0)
error->warning(FLERR,
"Please ensure there is sufficient memory for fix electrode "
"(anticipated usage is at least {:.1f} GiB per proc)",
mem_needed);
}
/* ---------------------------------------------------------------------- */
void FixElectrodeConp::pre_force(int)
{
update_charges();
}
/* ---------------------------------------------------------------------- */
void FixElectrodeConp::pre_reverse(int eflag, int /*vflag*/)
{
gausscorr(eflag, true);
self_energy(eflag);
//potential_energy(eflag); // not always part of the energy, depending on ensemble, therefore
// removed
}
/* ---------------------------------------------------------------------- */
void FixElectrodeConp::compute_sd_vectors()
{
assert(algo == Algo::MATRIX_INV);
for (int g = 0; g < num_of_groups; g++) {
for (int j = 0; j < ngroup; j++) {
if (iele_to_group[j] == g) {
for (int k = 0; k < ngroup; k++) { sd_vectors[g][k] += capacitance[k][j] * evscale; }
}
}
}
}
/* ---------------------------------------------------------------------- */
void FixElectrodeConp::compute_sd_vectors_ffield()
{
assert(algo == Algo::MATRIX_INV);
double **x = atom->x;
int *mask = atom->mask;
tagint *tag = atom->tag;
double zprd = domain->prd[2];
for (int i = 0; i < atom->nlocal; i++) {
if (mask[i] & groupbit) {
int const i_iele = tag_to_iele[tag[i]];
double const zprd_offset = (mask[i] & group_bits[top_group]) ? 0.0 : 1.0;
double const evscale_elez = evscale * (x[i][2] / zprd + zprd_offset);
for (int g = 0; g < num_of_groups; g++) {
double gmult = (g == top_group) ? -1.0 : 1.0;
for (int k = 0; k < ngroup; k++) {
sd_vectors[g][k] += gmult * capacitance[k][i_iele] * evscale_elez;
}
}
}
}
for (int g = 0; g < num_of_groups; g++) {
MPI_Allreduce(MPI_IN_PLACE, &sd_vectors[g].front(), ngroup, MPI_DOUBLE, MPI_SUM, world);
}
}
/* ---------------------------------------------------------------------- */
int FixElectrodeConp::get_top_group()
{
double *zmax = new double[num_of_groups];
double **x = atom->x;
for (int g = 0; g < num_of_groups; g++) { zmax[g] = domain->boxlo[2]; }
int *mask = atom->mask;
for (int i = 0; i < atom->nlocal; i++) {
for (int g = 0; g < num_of_groups; g++) {
if (mask[i] & group_bits[g]) {
if (x[i][2] > zmax[g]) zmax[g] = x[i][2];
}
}
}
MPI_Allreduce(MPI_IN_PLACE, zmax, num_of_groups, MPI_DOUBLE, MPI_MAX, world);
int gmax = 0;
for (int g = 0; g < num_of_groups; g++) { gmax = (zmax[g] > zmax[gmax]) ? g : gmax; }
delete[] zmax;
return gmax;
}
/* ---------------------------------------------------------------------- */
void FixElectrodeConp::update_charges()
{
n_call++;
MPI_Barrier(world);
double start = MPI_Wtime();
if (atom->nmax > nmax) {
memory->destroy(potential_i);
nmax = atom->nmax;
memory->create(potential_i, nmax, "FixElectrode:potential_i");
}
double *q = atom->q;
gather_list_iele();
pre_update();
auto q_local = std::vector<double>(nlocalele, 0.);
if (algo == Algo::MATRIX_INV) {
std::fill(sb_charges.begin(), sb_charges.end(), 0.);
memset(potential_i, 0, atom->nmax * sizeof(double));
elyt_vector->compute_vector(potential_i);
if (force->newton_pair) comm->reverse_comm(this);
buffer_and_gather(potential_i, potential_iele);
MPI_Barrier(world);
double mult_start = MPI_Wtime();
for (int i_iele = 0; i_iele < nlocalele; i_iele++) {
double q_tmp = 0;
int const iele = list_iele[i_iele];
double *_noalias caprow = capacitance[iele];
for (int j = 0; j < ngroup; j++) { q_tmp -= caprow[j] * potential_iele[j]; }
q_local[i_iele] = q_tmp;
sb_charges[iele_to_group[iele]] += q_tmp;
}
MPI_Allreduce(MPI_IN_PLACE, &sb_charges.front(), num_of_groups, MPI_DOUBLE, MPI_SUM, world);
update_psi(); // use for equal-style and conq
if (qtotal_var_style != VarStyle::UNSET)
update_psi_qtotal(); // use for qtotal; same for thermo
for (int g = 0; g < num_of_groups; g++)
for (int j = 0; j < nlocalele; j++) q_local[j] += sd_vectors[g][list_iele[j]] * group_psi[g];
MPI_Barrier(world);
mult_time += MPI_Wtime() - mult_start;
} else if (algo == Algo::MATRIX_CG || algo == Algo::CG) { // conjugate gradient algorithm
update_psi(); // update group_psi if equal-style
auto b = gather_elevec_local(elyt_vector);
for (int i = 0; i < nlocalele; i++) {
b[i] -= evscale * group_psi[iele_to_group_local[i]];
q_local[i] = q[atom->map(taglist_local[i])]; // pre-condition with current charges
}
q_local = constraint_correction(q_local);
MPI_Barrier(world);
double mult_start = MPI_Wtime();
auto a = ele_ele_interaction(q_local);
MPI_Barrier(world);
mult_time += MPI_Wtime() - mult_start;
auto r = add_nlocalele(b, a);
auto d = constraint_projection(r);
double dot_old = dot_nlocalele(r, d);
double delta = dot_old;
for (int k = 0; k < ngroup && delta > cg_threshold; k++, n_cg_step++) {
MPI_Barrier(world);
double mult_start_loop = MPI_Wtime();
auto y = ele_ele_interaction(d);
MPI_Barrier(world);
mult_time += MPI_Wtime() - mult_start_loop;
double alpha = dot_old / -dot_nlocalele(d, y);
q_local = add_nlocalele(q_local, scale_vector(alpha, d));
// prepare next step
if ((k + 1) % 20 == 0) {
// avoid shifting residual. This rarely happens.
q_local = constraint_correction(q_local);
a = ele_ele_interaction(q_local);
r = add_nlocalele(b, a);
} else {
r = add_nlocalele(r, scale_vector(alpha, y));
}
auto p = constraint_projection(r);
double dot_new = dot_nlocalele(r, p);
d = add_nlocalele(p, scale_vector(dot_new / dot_old, d));
delta = dot_nlocalele(r, d);
dot_old = dot_new;
}
recompute_potential(b, q_local);
if (delta > cg_threshold && comm->me == 0) error->warning(FLERR, "CG threshold not reached");
} else {
error->all(FLERR, "This algorithm is not implemented, yet");
}
set_charges(q_local);
update_time += MPI_Wtime() - start;
}
std::vector<double> FixElectrodeConp::ele_ele_interaction(const std::vector<double> &q_local)
{
assert((int) q_local.size() == nlocalele);
assert(algo == Algo::CG || algo == Algo::MATRIX_CG);
if (algo == Algo::CG) {
set_charges(q_local);
return gather_elevec_local(elec_vector);
} else {
return times_elastance(gather_ngroup(q_local));
}
}
/* ---------------------------------------------------------------------- */
void FixElectrodeConp::set_charges(std::vector<double> q_local)
{
assert((int) q_local.size() == nlocalele);
double *q = atom->q;
for (int i = 0; i < nlocalele; i++) q[atom->map(taglist_local[i])] = q_local[i];
comm->forward_comm(this);
intel_pack_buffers();
}
/* ---------------------------------------------------------------------- */
std::vector<double> FixElectrodeConp::gather_elevec_local(ElectrodeVector *vec)
{
memset(potential_i, 0, atom->nmax * sizeof(double));
vec->compute_vector(potential_i);
if (force->newton_pair) comm->reverse_comm(this);
auto a = std::vector<double>(nlocalele, 0.);
for (int i = 0; i < nlocalele; i++) a[i] = potential_i[atom->map(taglist_local[i])];
return a;
}
/* ---------------------------------------------------------------------- */
std::vector<double> FixElectrodeConp::gather_ngroup(std::vector<double> x_local)
{
auto x = std::vector<double>(ngroup, 0.);
for (int i = 0; i < nlocalele; i++) {
int const iele = list_iele[i];
x[iele] = x_local[i];
}
MPI_Allreduce(MPI_IN_PLACE, &x.front(), ngroup, MPI_DOUBLE, MPI_SUM, world);
return x;
}
/* ----------------------------------------------------------------------
ensure total electrode charge is 0 if symm and qtotal if qtotal is used
------------------------------------------------------------------------- */
std::vector<double> FixElectrodeConp::constraint_correction(std::vector<double> x)
{
if (symm || qtotal_var_style != VarStyle::UNSET) {
if (qtotal_var_style == VarStyle::EQUAL) qtotal = input->variable->compute_equal(qtotal_var_id);
double sum = 0.;
for (double xi : x) sum += xi;
MPI_Allreduce(MPI_IN_PLACE, &sum, 1, MPI_DOUBLE, MPI_SUM, world);
if (qtotal_var_style != VarStyle::UNSET) sum -= qtotal;
sum /= ngroup;
for (double &xi : x) xi -= sum;
return x;
}
return x;
}
/* ----------------------------------------------------------------------
project into direction that conserves total charge (cf. Gingrich master thesis)
------------------------------------------------------------------------- */
std::vector<double> FixElectrodeConp::constraint_projection(std::vector<double> x)
{
if (symm || qtotal_var_style != VarStyle::UNSET) {
double sum = 0.;
for (double xi : x) sum += xi;
MPI_Allreduce(MPI_IN_PLACE, &sum, 1, MPI_DOUBLE, MPI_SUM, world);
sum /= ngroup;
for (double &xi : x) xi -= sum;
}
return x;
}
/* ---------------------------------------------------------------------- */
std::vector<double> FixElectrodeConp::scale_vector(double alpha, std::vector<double> x)
{
for (double &xi : x) xi *= alpha;
return x;
}
/* ---------------------------------------------------------------------- */
std::vector<double> FixElectrodeConp::add_nlocalele(std::vector<double> a, std::vector<double> b)
{
assert(((int) a.size() == nlocalele) && ((int) b.size() == nlocalele));
for (int i = 0; i < nlocalele; i++) a[i] += b[i];
return a;
}
/* ---------------------------------------------------------------------- */
double FixElectrodeConp::dot_nlocalele(std::vector<double> a, std::vector<double> b)
{
assert(((int) a.size() == nlocalele) && ((int) b.size() == nlocalele));
double out = 0.;
for (int i = 0; i < nlocalele; i++) out += a[i] * b[i];
MPI_Allreduce(MPI_IN_PLACE, &out, 1, MPI_DOUBLE, MPI_SUM, world);
return out;
}
/* ---------------------------------------------------------------------- */
std::vector<double> FixElectrodeConp::times_elastance(std::vector<double> x)
{
assert((int) x.size() == ngroup);
auto out = std::vector<double>(nlocalele, 0.);
for (int i = 0; i < nlocalele; i++) {
double *_noalias row = elastance[list_iele[i]];
double oi = 0;
for (int j = 0; j < ngroup; j++) oi += row[j] * x[j];
out[i] = oi;
}
return out;
}
/* ---------------------------------------------------------------------- */
void FixElectrodeConp::update_psi()
{
for (int g = 0; g < num_of_groups; g++) {
if (group_psi_var_styles[g] == VarStyle::CONST)
group_psi[g] = group_psi_const[g];
else
group_psi[g] = input->variable->compute_equal(group_psi_var_ids[g]);
}
}
/* ---------------------------------------------------------------------- */
void FixElectrodeConp::update_psi_qtotal()
{
if (qtotal_var_style == VarStyle::EQUAL) qtotal = input->variable->compute_equal(qtotal_var_id);
double q_current = 0.;
for (int i = 0; i < num_of_groups; i++) {
q_current += sb_charges[i];
for (int j = 0; j < num_of_groups; j++) q_current += macro_capacitance[i][j] * group_psi[j];
}
double add_psi = (qtotal - q_current) / macro_capacitance_sum;
for (int i = 0; i < num_of_groups; i++) group_psi[i] += add_psi;
}
/* ---------------------------------------------------------------------- */
void FixElectrodeConp::compute_macro_matrices()
{
assert(algo == Algo::MATRIX_INV);
macro_capacitance =
std::vector<std::vector<double>>(num_of_groups, std::vector<double>(num_of_groups));
for (int g = 0; g < num_of_groups; g++) {
for (int k = 0; k < ngroup; k++) { macro_capacitance[iele_to_group[k]][g] += sd_vectors[g][k]; }
}
if (symm) {
// scaling with C[0][0] improves numerical stability
double scalar = macro_capacitance[0][0];
macro_capacitance.back() = std::vector<double>(num_of_groups, scalar);
}
macro_elastance =
std::vector<std::vector<double>>(num_of_groups, std::vector<double>(num_of_groups));
if (num_of_groups == 1) {
macro_elastance[0][0] = 1 / macro_capacitance[0][0];
} else if (num_of_groups == 2) {
double const det = macro_capacitance[0][0] * macro_capacitance[1][1] -
macro_capacitance[0][1] * macro_capacitance[1][0];
if (fabs(det) < SMALL) error->all(FLERR, "ELECTRODE macro matrix inversion failed!");
double const detinv = 1 / det;
macro_elastance[0][0] = macro_capacitance[1][1] * detinv;
macro_elastance[1][1] = macro_capacitance[0][0] * detinv;
macro_elastance[0][1] = -macro_capacitance[0][1] * detinv;
macro_elastance[1][0] = -macro_capacitance[1][0] * detinv;
} else {
int m = num_of_groups;
int n = m, lda = m;
std::vector<int> ipiv(m);
int const lwork = m * m;
std::vector<double> work(lwork);
std::vector<double> tmp(lwork);
for (int i = 0; i < num_of_groups; i++) {
for (int j = 0; j < num_of_groups; j++) {
int idx = i * num_of_groups + j;
tmp[idx] = macro_capacitance[i][j];
}
}
int info_rf, info_ri;
dgetrf_(&m, &n, &tmp.front(), &lda, &ipiv.front(), &info_rf);
dgetri_(&n, &tmp.front(), &lda, &ipiv.front(), &work.front(), &lwork, &info_ri);
if (info_rf != 0 || info_ri != 0) error->all(FLERR, "ELECTRODE macro matrix inversion failed!");
for (int i = 0; i < num_of_groups; i++) {
for (int j = 0; j < num_of_groups; j++) {
int idx = i * num_of_groups + j;
macro_elastance[i][j] = tmp[idx];
}
}
}
macro_capacitance_sum = 0.;
for (int i = 0; i < num_of_groups; i++)
for (int j = 0; j < num_of_groups; j++) macro_capacitance_sum += macro_capacitance[i][j];
}
/* ---------------------------------------------------------------------- */
double FixElectrodeConp::compute_scalar()
{
return potential_energy();
}
/* ---------------------------------------------------------------------- */
double FixElectrodeConp::compute_vector(int i)
{
return group_psi[i];
}
/* ---------------------------------------------------------------------- */
double FixElectrodeConp::compute_array(int i, int j)
{
if (j == 0)
return sb_charges[i];
else if (j <= num_of_groups)
return macro_capacitance[i][j - 1];
else if (j <= 2 * num_of_groups)
return macro_elastance[i][j - num_of_groups - 1];
else
return 0.; // avoid -Wreturn-type warning
}
/* ---------------------------------------------------------------------- */
double FixElectrodeConp::potential_energy()
{
// corrections to energy due to potential psi
double const qqrd2e = force->qqrd2e;
int const nlocal = atom->nlocal;
int *mask = atom->mask;
double *q = atom->q;
double energy = 0;
for (int i = 0, iele = 0; i < nlocal; i++) {
if (groupbit & mask[i]) {
energy -= qqrd2e * q[i] * group_psi[iele_to_group_local[iele]] * evscale;
iele++;
}
}
MPI_Allreduce(MPI_IN_PLACE, &energy, 1, MPI_DOUBLE, MPI_SUM, world);
return energy;
}
/* ---------------------------------------------------------------------- */
double FixElectrodeConp::self_energy(int eflag)
{
// corrections to energy due to self interaction
double const qqrd2e = force->qqrd2e;
int const nlocal = atom->nlocal;
double const pre = 1. / sqrt(MY_2PI) * qqrd2e;
int *mask = atom->mask;
int *type = atom->type;
double *q = atom->q;
double energy = 0;
for (int i = 0; i < nlocal; i++) {
if (groupbit & mask[i]) {
double const q2 = q[i] * q[i];
double ieta = etaflag ? atom->dvector[eta_index][i] : eta;
double e = ieta * pre * q2;
if (tfflag && (groupbit & mask[i])) e += 0.5 * qqrd2e * q2 * tf_types[type[i]];
energy += e;
if (eflag) {
force->pair->ev_tally(i, i, nlocal, force->newton_pair, 0., e, 0, 0, 0,
0); // 0 evdwl, 0 fpair, 0 delxyz
}
}
}
MPI_Allreduce(MPI_IN_PLACE, &energy, 1, MPI_DOUBLE, MPI_SUM, world);
return energy;
}
/* ---------------------------------------------------------------------- */
double FixElectrodeConp::gausscorr(int eflag, bool fflag)
{
// correction to short range interaction due to eta
int evflag = pair->evflag;
double const qqrd2e = force->qqrd2e;
int const nlocal = atom->nlocal;
int *mask = atom->mask;
double *q = atom->q;
double **x = atom->x;
double **f = atom->f;
int *type = atom->type;
int newton_pair = force->newton_pair;
int inum = vec_neighlist->inum;
int *ilist = vec_neighlist->ilist;
int *numneigh = vec_neighlist->numneigh;
int **firstneigh = vec_neighlist->firstneigh;
double energy_sr = 0.;
for (int ii = 0; ii < inum; ii++) {
int i = ilist[ii];
bool i_in_ele = groupbit & mask[i];
double qtmp = q[i];
double xtmp = x[i][0];
double ytmp = x[i][1];
double ztmp = x[i][2];
double const eta_i = etaflag ? atom->dvector[eta_index][i] : eta;
int itype = type[i];
int *jlist = firstneigh[i];
int jnum = numneigh[i];
for (int jj = 0; jj < jnum; jj++) {
int const j = jlist[jj] & NEIGHMASK;
bool j_in_ele = groupbit & mask[j];
if (!(i_in_ele || j_in_ele)) continue;
double delx = xtmp - x[j][0];
double dely = ytmp - x[j][1];
double delz = ztmp - x[j][2];
double rsq = delx * delx + dely * dely + delz * delz;
int jtype = type[j];
if (rsq < force->pair->cutsq[itype][jtype]) {
double const eta_j = etaflag ? atom->dvector[eta_index][j] : eta;
double eta_ij;
if (i_in_ele && j_in_ele)
eta_ij = eta_i * eta_j / sqrt(eta_i * eta_i + eta_j * eta_j);
else if (i_in_ele)
eta_ij = eta_i;
else {
assert(j_in_ele);
eta_ij = eta_j;
}
double r2inv = 1.0 / rsq;
double r = sqrt(rsq);
double erfc_etar = 0.;
double derfcr = ElectrodeMath::safe_derfcr(eta_ij * r, erfc_etar);
double prefactor = qqrd2e * qtmp * q[j] / r;
energy_sr -= prefactor * erfc_etar;
double fpair = prefactor * derfcr * r2inv;
if (fflag) {
f[i][0] += delx * fpair;
f[i][1] += dely * fpair;
f[i][2] += delz * fpair;
if (newton_pair || j < nlocal) {
f[j][0] -= delx * fpair;
f[j][1] -= dely * fpair;
f[j][2] -= delz * fpair;
}
}
double ecoul = 0.;
if (eflag) ecoul = -prefactor * erfc_etar;
if (evflag) {
force->pair->ev_tally(i, j, nlocal, newton_pair, 0., ecoul, fpair, delx, dely, delz);
}
}
}
}
MPI_Allreduce(MPI_IN_PLACE, &energy_sr, 1, MPI_DOUBLE, MPI_SUM, world);
return energy_sr;
}
/* ---------------------------------------------------------------------- */
FixElectrodeConp::~FixElectrodeConp()
{
if (comm->me == 0) {
try {
if (timer_flag) {
utils::logmesg(lmp, "Multiplication time: {:.4g} s\n", mult_time);
utils::logmesg(lmp, "Update time: {:.4g} s\n", update_time);
}
if (algo == Algo::CG || algo == Algo::MATRIX_CG)
utils::logmesg(lmp, "Average conjugate gradient steps: {:.4g}\n", n_cg_step * 1. / n_call);
} catch (std::exception &) {
}
}
if (modify->get_fix_by_id(id)) atom->delete_callback(id, Atom::GROW);
delete[] recvcounts;
delete[] displs;
if (matrix_algo) {
memory->destroy(iele_gathered);
memory->destroy(buf_gathered);
memory->destroy(potential_iele);
}
memory->destroy(potential_i);
delete elyt_vector;
memory->destroy(elastance);
memory->destroy(capacitance);
if (need_elec_vector) delete elec_vector;
}
/* ---------------------------------------------------------------------- */
int FixElectrodeConp::setmask()
{
int mask = 0;
mask |= FixConst::PRE_EXCHANGE;
mask |= FixConst::POST_NEIGHBOR;
mask |= FixConst::PRE_FORCE;
mask |= FixConst::PRE_REVERSE;
//mask |= THERMO_ENERGY;
return mask;
}
/* ---------------------------------------------------------------------- */
void FixElectrodeConp::write_to_file(FILE *file, const std::vector<tagint> &tags,
const std::vector<std::vector<double>> &mat)
{
for (const auto &t : tags) fmt::print(file, "{:20}", t);
fputs("\n", file);
for (const auto &vec : mat) {
for (const auto &x : vec) fmt::print(file, "{:20.11e}", x);
fputs("\n", file);
}
}
/*----------------------------------------------------------------------- */
void FixElectrodeConp::read_from_file(const std::string &input_file, double **array,
const std::string &filetype)
{
if (comm->me == 0) {
std::vector<std::vector<double>> matrix;
std::vector<tagint> tags;
try {
TextFileReader reader(input_file, filetype);
int bufsize = ngroup * 20 + 4;
reader.set_bufsize(bufsize > 100 ? bufsize : 100);
// get line with tags
auto values = reader.next_values(ngroup);
for (int i = 0; i < ngroup; ++i) tags.push_back(values.next_tagint());
std::vector<double> a_line;
for (int i = 0; i < ngroup; ++i) {
a_line.clear();
values = reader.next_values(ngroup);
for (int j = 0; j < ngroup; ++j) a_line.push_back(values.next_double());
matrix.push_back(a_line);
}
} catch (std::exception &e) {
error->one(FLERR, "Error parsing {} file: {}", filetype, e.what());
}
std::vector<tagint> idx;
for (const auto &t : taglist) {
for (std::size_t i = 0; i < tags.size(); i++) {
if (t == tags[i]) {
idx.push_back(i);
break;
}
}
}
if ((bigint) idx.size() != ngroup)
error->all(FLERR, "Read tags do not match taglist of fix {}", style);
for (bigint i = 0; i < ngroup; i++) {
bigint const ii = idx[i];
for (bigint j = 0; j < ngroup; j++) array[i][j] = matrix[ii][idx[j]];
}
}
MPI_Bcast(&array[0][0], ngroup * ngroup, MPI_DOUBLE, 0, world);
}
/* ---------------------------------------------------------------------- */
void FixElectrodeConp::request_etypes_neighlists()
{
int const ntypes = atom->ntypes;
// construct etypes
int *mask = atom->mask;
int *type = atom->type;
auto elec = std::vector<int>(ntypes, 0);
auto elyt = std::vector<int>(ntypes, 0);
for (int i = 0; i < atom->nlocal; i++) {
if (mask[i] & groupbit)
elec[type[i] - 1] += 1;
else
elyt[type[i] - 1] += 1;
}
MPI_Allreduce(MPI_IN_PLACE, &elec.front(), ntypes, MPI_INT, MPI_SUM, world);
MPI_Allreduce(MPI_IN_PLACE, &elyt.front(), ntypes, MPI_INT, MPI_SUM, world);
etypes.clear();
for (int i = 0; i < ntypes; i++) {
if (!elec[i] == !elyt[i]) error->all(FLERR, "Types overlap, cannot use etypes keyword");
if (elec[i]) etypes.push_back(i + 1);
}
// construct skip arrays
int *iskip_mat = new int[ntypes + 1];
int *iskip_vec = new int[ntypes + 1];
int **ijskip_mat;
memory->create(ijskip_mat, ntypes + 1, ntypes + 1, "fixelectrode:ijskip_mat");
int **ijskip_vec;
memory->create(ijskip_vec, ntypes + 1, ntypes + 1, "fixelectrode:ijskip_vec");
for (int itype = 1; itype <= ntypes; ++itype) {
// itype is 1-indexed -- follow LAMMPS convention
iskip_mat[itype] = 1; // alist skips all except etypes by default
iskip_vec[itype] = 0;
for (int jtype = 1; jtype <= ntypes; ++jtype) { ijskip_mat[itype][jtype] = 1; }
}
for (int etype : etypes) {
iskip_mat[etype] = 0;
ijskip_mat[etype][etype] = 0;
}
// now, iskip_mat[itype] == 0 iff etype
// set ijskip_vec[itype][jtype] == 0 if (i is etype XOR j is etype)
for (int itype = 1; itype <= ntypes; ++itype) {
for (int jtype = 1; jtype <= ntypes; ++jtype) {
bool ele_and_sol = (iskip_mat[itype] != iskip_mat[jtype]);
ijskip_vec[itype][jtype] = (ele_and_sol) ? 0 : 1;
}
}
if (need_array_compute) {
auto matReq = neighbor->add_request(this, NeighConst::REQ_OCCASIONAL);
matReq->set_skip(iskip_mat, ijskip_mat);
matReq->set_id(1);
if (intelflag) matReq->enable_intel();
} else if (need_elec_vector) {
auto matReq = neighbor->add_request(this);
matReq->set_skip(iskip_mat, ijskip_mat);
matReq->set_id(1);
if (intelflag) matReq->enable_intel();
} else {
delete[] iskip_mat;
memory->destroy(ijskip_mat);
}
auto vecReq = neighbor->add_request(this);
vecReq->set_skip(iskip_vec, ijskip_vec);
vecReq->set_id(2);
if (intelflag) vecReq->enable_intel();
}
int FixElectrodeConp::pack_exchange(int i, double * /* buf */)
{
if (atom->mask[i] & groupbit) {
nlocalele_outdated = 1;
nlocalele--; // decrement nlocalele if we are packing away a particle
}
return 0;
}
int FixElectrodeConp::unpack_exchange(int nlocal, double * /* buf */)
{
if (atom->mask[nlocal] & groupbit) { // this should work
nlocalele_outdated = 1;
nlocalele++; // increment nlocalele if we are unpacking a particle
}
return 0;
}
void FixElectrodeConp::gather_list_iele()
{
MPI_Allreduce(MPI_IN_PLACE, &nlocalele_outdated, 1, MPI_INT, MPI_SUM, world);
if (nlocalele_outdated == 0) return;
int *mask = atom->mask;
tagint *tag = atom->tag;
int const nlocal = atom->nlocal;
if (matrix_algo) {
list_iele.clear();
list_iele.reserve(nlocalele);
}
taglist_local.clear();
iele_to_group_local.clear();
for (int i = 0; i < nlocal; i++) {
if (mask[i] & groupbit) {
tagint const t = tag[i];
if (matrix_algo) list_iele.push_back(tag_to_iele[t]);
taglist_local.push_back(t);
for (int g = 0; g < num_of_groups; g++)
if (mask[i] & group_bits[g]) iele_to_group_local.push_back(g);
}
}
nlocalele = static_cast<int>(taglist_local.size()); // just for safety
assert((int) iele_to_group_local.size() == nlocalele);
if (matrix_algo) {
MPI_Allgather(&nlocalele, 1, MPI_INT, recvcounts, 1, MPI_INT, world);
displs[0] = 0;
int const nprocs = comm->nprocs;
for (int i = 1; i < nprocs; i++) { displs[i] = displs[i - 1] + recvcounts[i - 1]; }
MPI_Allgatherv(&list_iele[0], nlocalele, MPI_INT, iele_gathered, recvcounts, displs, MPI_INT,
world);
}
nlocalele_outdated = 0;
}
void FixElectrodeConp::gather_elevec(double *elevec)
{
assert(matrix_algo);
MPI_Allgatherv(&buf_iele[0], nlocalele, MPI_DOUBLE, buf_gathered, recvcounts, displs, MPI_DOUBLE,
world);
for (int i = 0; i < ngroup; i++) { elevec[iele_gathered[i]] = buf_gathered[i]; }
}
void FixElectrodeConp::buffer_and_gather(double *ivec, double *elevec)
{
assert(matrix_algo);
buf_iele.reserve(nlocalele); // avoid unexpected reallocs
for (int i_iele = 0; i_iele < nlocalele; i_iele++) {
buf_iele[i_iele] = ivec[atom->map(taglist[list_iele[i_iele]])];
}
gather_elevec(elevec);
}
double FixElectrodeConp::memory_usage()
{
int const nprocs = comm->nprocs;
int const nmax = atom->nmax;
double bytes = 0.0;
bytes += nmax * (sizeof(double)); // potential_i
if (matrix_algo) {
bytes += ngroup * (sizeof(int) + 2 * sizeof(double)); // iele_gathered, buf_gathered, pot
bytes += ngroup * ngroup * sizeof(double); // capacitance or elastance
bytes += list_iele.capacity() * sizeof(int);
bytes += buf_iele.capacity() * sizeof(double);
bytes += nprocs * (2 * sizeof(int)); // displs, recvcounts
bytes += (tag_to_iele.size() * (sizeof(int) + sizeof(void *)) + // data list
tag_to_iele.bucket_count() * (sizeof(void *) + sizeof(size_t))); // bucket index
bytes += taglist.capacity() * sizeof(tagint);
bytes += iele_to_group.capacity() * sizeof(int);
}
bytes += taglist_local.capacity() * sizeof(tagint);
bytes += iele_to_group_local.capacity() * sizeof(int);
return bytes;
}
/* ---------------------------------------------------------------------- */
int FixElectrodeConp::pack_reverse_comm(int n, int first, double *buf)
{
int m = 0;
int last = first + n;
for (int i = first; i < last; i++) { buf[m++] = potential_i[i]; }
return m;
}
/* ---------------------------------------------------------------------- */
void FixElectrodeConp::unpack_reverse_comm(int n, int *list, double *buf)
{
for (int i = 0; i < n; i++) { potential_i[list[i]] += buf[i]; }
}
/* ---------------------------------------------------------------------- */
int FixElectrodeConp::pack_forward_comm(int n, int *list, double *buf, int /*pbc_flag*/,
int * /*pbc*/)
{
int m = 0;
for (int i = 0; i < n; i++) {
int const j = list[i];
buf[m++] = atom->q[j];
}
return m;
}
/* ---------------------------------------------------------------------- */
void FixElectrodeConp::unpack_forward_comm(int n, int first, double *buf)
{
int const last = first + n;
for (int i = first, m = 0; i < last; i++) atom->q[i] = buf[m++];
}