// clang-format off /* ---------------------------------------------------------------------- LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator https://www.lammps.org/, Sandia National Laboratories Steve Plimpton, sjplimp@sandia.gov 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: Liang Wan (Chinese Academy of Sciences) Memory efficiency improved by Ray Shan (Sandia) ------------------------------------------------------------------------- */ #include "dump_cfg.h" #include "arg_info.h" #include "atom.h" #include "domain.h" #include "memory.h" #include "error.h" #include using namespace LAMMPS_NS; #define UNWRAPEXPAND 10.0 #define ONEFIELD 32 #define DELTA 1048576 /* ---------------------------------------------------------------------- */ DumpCFG::DumpCFG(LAMMPS *lmp, int narg, char **arg) : DumpCustom(lmp, narg, arg), auxname(nullptr) { multifile_override = 0; // use earg instead of original arg since it includes expanded wildcards // earg was created by parent DumpCustom if (nfield < 5 || strcmp(earg[0],"mass") != 0 || strcmp(earg[1],"type") != 0 || (strcmp(earg[2],"xs") != 0 && strcmp(earg[2],"xsu") != 0) || (strcmp(earg[3],"ys") != 0 && strcmp(earg[3],"ysu") != 0) || (strcmp(earg[4],"zs") != 0 && strcmp(earg[4],"zsu") != 0)) error->all(FLERR,"Dump cfg arguments must start with " "'mass type xs ys zs' or 'mass type xsu ysu zsu'"); if (strcmp(earg[2],"xs") == 0) { if (strcmp(earg[3],"ysu") == 0 || strcmp(earg[4],"zsu") == 0) error->all(FLERR,"Dump cfg arguments can not mix xs|ys|zs with xsu|ysu|zsu"); unwrapflag = 0; } else { if (strcmp(earg[3],"ys") == 0 || strcmp(earg[4],"zs") == 0) error->all(FLERR,"Dump cfg arguments can not mix xs|ys|zs with xsu|ysu|zsu"); unwrapflag = 1; } // setup auxiliary property name strings // convert 'X_ID[m]' (X=c,f,v) to 'X_ID_m' if (nfield > 5) auxname = new char*[nfield-5]; else auxname = nullptr; int i = 0; key2col.clear(); for (int iarg = 5; iarg < nfield; iarg++, i++) { ArgInfo argi(earg[iarg],ArgInfo::COMPUTE|ArgInfo::FIX|ArgInfo::VARIABLE| ArgInfo::DNAME|ArgInfo::INAME); if (argi.get_dim() == 1) { std::string newarg = fmt::format("{}_{}_{}", earg[iarg][0], argi.get_name(), argi.get_index1()); auxname[i] = utils::strdup(newarg); } else { auxname[i] = utils::strdup(earg[iarg]); } key2col[earg[iarg]] = iarg; keyword_user[iarg].clear(); } } /* ---------------------------------------------------------------------- */ DumpCFG::~DumpCFG() { if (auxname) { for (int i = 0; i < nfield-5; i++) delete[] auxname[i]; delete[] auxname; } } /* ---------------------------------------------------------------------- */ void DumpCFG::init_style() { if (multifile == 0 && !multifile_override) error->all(FLERR,"Dump cfg requires one snapshot per file"); DumpCustom::init_style(); // setup function ptrs if (buffer_flag == 1) write_choice = &DumpCFG::write_string; else write_choice = &DumpCFG::write_lines; } /* ---------------------------------------------------------------------- */ void DumpCFG::write_header(bigint n) { // set scale factor used by AtomEye for CFG viz // default = 1.0 // for peridynamics, set to pre-computed PD scale factor // so PD particles mimic C atoms // for unwrapped coords, set to UNWRAPEXPAND (10.0) // so molecules are not split across periodic box boundaries double scale = 1.0; if (atom->peri_flag) scale = atom->pdscale; else if (unwrapflag == 1) scale = UNWRAPEXPAND; auto header = fmt::format("Number of particles = {}\n",n); header += fmt::format("A = {:g} Angstrom (basic length-scale)\n",scale); header += fmt::format("H0(1,1) = {:g} A\n",domain->xprd); header += fmt::format("H0(1,2) = 0 A\n"); header += fmt::format("H0(1,3) = 0 A\n"); header += fmt::format("H0(2,1) = {:g} A\n",domain->xy); header += fmt::format("H0(2,2) = {:g} A\n",domain->yprd); header += fmt::format("H0(2,3) = 0 A\n"); header += fmt::format("H0(3,1) = {:g} A\n",domain->xz); header += fmt::format("H0(3,2) = {:g} A\n",domain->yz); header += fmt::format("H0(3,3) = {:g} A\n",domain->zprd); header += fmt::format(".NO_VELOCITY.\n"); header += fmt::format("entry_count = {}\n",nfield-2); for (int i = 5; i < nfield; i++) if (keyword_user[i].size()) header += fmt::format("auxiliary[{}] = {}\n",i-5,keyword_user[i]); else header += fmt::format("auxiliary[{}] = {}\n",i-5,auxname[i-5]); fmt::print(fp, header); } /* ---------------------------------------------------------------------- convert mybuf of doubles to one big formatted string in sbuf return -1 if strlen exceeds an int, since used as arg in MPI calls in Dump ------------------------------------------------------------------------- */ int DumpCFG::convert_string(int n, double *mybuf) { int i,j; int offset = 0; int m = 0; if (unwrapflag == 0) { for (i = 0; i < n; i++) { if (offset + size_one*ONEFIELD > maxsbuf) { if ((bigint) maxsbuf + DELTA > MAXSMALLINT) return -1; maxsbuf += DELTA; memory->grow(sbuf,maxsbuf,"dump:sbuf"); } for (j = 0; j < size_one; j++) { if (j == 0) { offset += sprintf(&sbuf[offset],"%f \n",mybuf[m]); } else if (j == 1) { offset += sprintf(&sbuf[offset],"%s \n",typenames[(int) mybuf[m]]); } else if (j >= 2) { if (vtype[j] == Dump::INT) offset += sprintf(&sbuf[offset],vformat[j],static_cast (mybuf[m])); else if (vtype[j] == Dump::DOUBLE) offset += sprintf(&sbuf[offset],vformat[j],mybuf[m]); else if (vtype[j] == Dump::STRING) offset += sprintf(&sbuf[offset],vformat[j],typenames[(int) mybuf[m]]); else if (vtype[j] == Dump::BIGINT) offset += sprintf(&sbuf[offset],vformat[j],static_cast (mybuf[m])); } m++; } offset += sprintf(&sbuf[offset],"\n"); } } else if (unwrapflag == 1) { double unwrap_coord; for (i = 0; i < n; i++) { if (offset + size_one*ONEFIELD > maxsbuf) { if ((bigint) maxsbuf + DELTA > MAXSMALLINT) return -1; maxsbuf += DELTA; memory->grow(sbuf,maxsbuf,"dump:sbuf"); } for (j = 0; j < size_one; j++) { if (j == 0) { offset += sprintf(&sbuf[offset],"%f \n",mybuf[m]); } else if (j == 1) { offset += sprintf(&sbuf[offset],"%s \n",typenames[(int) mybuf[m]]); } else if (j >= 2 && j <= 4) { unwrap_coord = (mybuf[m] - 0.5)/UNWRAPEXPAND + 0.5; offset += sprintf(&sbuf[offset],vformat[j],unwrap_coord); } else if (j >= 5) { if (vtype[j] == Dump::INT) offset += sprintf(&sbuf[offset],vformat[j],static_cast (mybuf[m])); else if (vtype[j] == Dump::DOUBLE) offset += sprintf(&sbuf[offset],vformat[j],mybuf[m]); else if (vtype[j] == Dump::STRING) offset += sprintf(&sbuf[offset],vformat[j],typenames[(int) mybuf[m]]); else if (vtype[j] == Dump::BIGINT) offset += sprintf(&sbuf[offset],vformat[j],static_cast (mybuf[m])); } m++; } offset += sprintf(&sbuf[offset],"\n"); } } return offset; } /* ---------------------------------------------------------------------- */ void DumpCFG::write_data(int n, double *mybuf) { (this->*write_choice)(n,mybuf); } /* ---------------------------------------------------------------------- */ void DumpCFG::write_string(int n, double *mybuf) { if (mybuf) fwrite(mybuf,sizeof(char),n,fp); } /* ---------------------------------------------------------------------- */ void DumpCFG::write_lines(int n, double *mybuf) { int i,j,m; if (unwrapflag == 0) { m = 0; for (i = 0; i < n; i++) { for (j = 0; j < size_one; j++) { if (j == 0) { fprintf(fp,"%f \n",mybuf[m]); } else if (j == 1) { fprintf(fp,"%s \n",typenames[(int) mybuf[m]]); } else if (j >= 2) { if (vtype[j] == Dump::INT) fprintf(fp,vformat[j],static_cast (mybuf[m])); else if (vtype[j] == Dump::DOUBLE) fprintf(fp,vformat[j],mybuf[m]); else if (vtype[j] == Dump::STRING) fprintf(fp,vformat[j],typenames[(int) mybuf[m]]); else if (vtype[j] == Dump::BIGINT) fprintf(fp,vformat[j],static_cast (mybuf[m])); } m++; } fprintf(fp,"\n"); } } else if (unwrapflag == 1) { m = 0; double unwrap_coord; for (i = 0; i < n; i++) { for (j = 0; j < size_one; j++) { if (j == 0) { fprintf(fp,"%f \n",mybuf[m]); } else if (j == 1) { fprintf(fp,"%s \n",typenames[(int) mybuf[m]]); } else if (j >= 2 && j <= 4) { unwrap_coord = (mybuf[m] - 0.5)/UNWRAPEXPAND + 0.5; fprintf(fp,vformat[j],unwrap_coord); } else if (j >= 5) { if (vtype[j] == Dump::INT) fprintf(fp,vformat[j],static_cast (mybuf[m])); else if (vtype[j] == Dump::DOUBLE) fprintf(fp,vformat[j],mybuf[m]); else if (vtype[j] == Dump::STRING) fprintf(fp,vformat[j],typenames[(int) mybuf[m]]); else if (vtype[j] == Dump::BIGINT) fprintf(fp,vformat[j],static_cast (mybuf[m])); } m++; } fprintf(fp,"\n"); } } }