forked from lammps/lammps
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathkim_interactions.cpp
452 lines (390 loc) · 17 KB
/
kim_interactions.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
// clang-format off
/* ----------------------------------------------------------------------
LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator
https://www.lammps.org/, Sandia National Laboratories
Steve Plimpton, [email protected]
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: Axel Kohlmeyer (Temple U),
Ryan S. Elliott (UMN),
Ellad B. Tadmor (UMN),
Ronald Miller (Carleton U),
Yaser Afshar (UMN)
------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the Free
Software Foundation; either version 2 of the License, or (at your option)
any later version.
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
more details.
You should have received a copy of the GNU General Public License along with
this program; if not, see <https://www.gnu.org/licenses>.
Linking LAMMPS statically or dynamically with other modules is making a
combined work based on LAMMPS. Thus, the terms and conditions of the GNU
General Public License cover the whole combination.
In addition, as a special exception, the copyright holders of LAMMPS give
you permission to combine LAMMPS with free software programs or libraries
that are released under the GNU LGPL and with code included in the standard
release of the "kim-api" under the CDDL (or modified versions of such code,
with unchanged license). You may copy and distribute such a system following
the terms of the GNU GPL for LAMMPS and the licenses of the other code
concerned, provided that you include the source code of that other code
when and as the GNU GPL requires distribution of source code.
Note that people who make modified versions of LAMMPS are not obligated to
grant this special exception for their modified versions; it is their choice
whether to do so. The GNU General Public License gives permission to release
a modified version without this exception; this exception also makes it
possible to release a modified version which carries forward this exception.
------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------
Designed for use with the kim-api-2.1.0 (and newer) package
------------------------------------------------------------------------- */
#include "kim_interactions.h"
#include "atom.h"
#include "comm.h"
#include "domain.h"
#include "error.h"
#include "fix_store_kim.h"
#include "input.h"
#include "variable.h"
#include "modify.h"
#include "update.h"
#include <cstring>
#include <vector>
extern "C" {
#include "KIM_SimulatorHeaders.h"
}
using namespace LAMMPS_NS;
#define MAXLINE 1024
/* ---------------------------------------------------------------------- */
void KimInteractions::command(int narg, char **arg)
{
if (narg < 1) error->all(FLERR, "Illegal 'kim interactions' command");
if (!domain->box_exist)
error->all(FLERR, "Must use 'kim interactions' command after "
"simulation box is defined");
do_setup(narg, arg);
}
/* ---------------------------------------------------------------------- */
void KimInteractions::do_setup(int narg, char **arg)
{
bool fixed_types;
const std::string arg_str(arg[0]);
if ((narg == 1) && (arg_str == "fixed_types")) {
fixed_types = true;
} else if (narg != atom->ntypes) {
error->all(FLERR, "Illegal 'kim interactions' command.\nThe "
"LAMMPS simulation has {} atom type(s), but "
"{} chemical species passed to the "
"'kim interactions' command",
atom->ntypes, narg);
} else {
fixed_types = false;
}
char *model_name = nullptr;
KIM_SimulatorModel *simulatorModel(nullptr);
// check if we had a kim init command by finding fix STORE/KIM
// retrieve model name and pointer to simulator model class instance.
// validate model name if not given as null pointer.
int ifix = modify->find_fix("KIM_MODEL_STORE");
if (ifix >= 0) {
FixStoreKIM *fix_store = (FixStoreKIM *) modify->fix[ifix];
model_name = (char *)fix_store->getptr("model_name");
simulatorModel = (KIM_SimulatorModel *)fix_store->getptr("simulator_model");
} else error->all(FLERR, "Must use 'kim init' before 'kim interactions'");
// Begin output to log file
input->write_echo("#=== BEGIN kim interactions ==========================="
"=======\n");
if (simulatorModel) {
auto first_visit = input->variable->find("kim_update");
if (!fixed_types) {
std::string atom_type_sym_list =
fmt::format("{}", fmt::join(arg, arg + narg, " "));
std::string atom_type_num_list =
fmt::format("{}", species_to_atomic_no(arg[0]));
for (int i = 1; i < narg; ++i)
atom_type_num_list += fmt::format(" {}", species_to_atomic_no(arg[i]));
KIM_SimulatorModel_AddTemplateMap(
simulatorModel, "atom-type-sym-list", atom_type_sym_list.c_str());
KIM_SimulatorModel_AddTemplateMap(
simulatorModel, "atom-type-num-list", atom_type_num_list.c_str());
KIM_SimulatorModel_CloseTemplateMap(simulatorModel);
// validate species selection
int sim_num_species;
bool species_is_supported;
char const *sim_species;
KIM_SimulatorModel_GetNumberOfSupportedSpecies(
simulatorModel, &sim_num_species);
for (auto atom_type_sym : utils::split_words(atom_type_sym_list)) {
species_is_supported = false;
if (atom_type_sym == "NULL") continue;
for (int i = 0; i < sim_num_species; ++i) {
KIM_SimulatorModel_GetSupportedSpecies(
simulatorModel, i, &sim_species);
if (atom_type_sym == sim_species) species_is_supported = true;
}
if (!species_is_supported) {
error->all(FLERR, "Species '{}' is not supported by this "
"KIM Simulator Model", atom_type_sym);
}
}
} else {
KIM_SimulatorModel_CloseTemplateMap(simulatorModel);
}
// check if units are unchanged
int sim_fields, sim_lines;
const char *sim_field, *sim_value;
KIM_SimulatorModel_GetNumberOfSimulatorFields(simulatorModel, &sim_fields);
for (int i = 0; i < sim_fields; ++i) {
KIM_SimulatorModel_GetSimulatorFieldMetadata(
simulatorModel, i, &sim_lines, &sim_field);
const std::string sim_field_str(sim_field);
if (sim_field_str == "units") {
KIM_SimulatorModel_GetSimulatorFieldLine(
simulatorModel, i, 0, &sim_value);
const std::string sim_value_str(sim_value);
const std::string unit_style_str(update->unit_style);
if (sim_value_str != unit_style_str)
error->all(FLERR, "Incompatible units for KIM Simulator Model");
}
}
bool no_model_definition = true;
for (int i = 0; i < sim_fields; ++i) {
KIM_SimulatorModel_GetSimulatorFieldMetadata(
simulatorModel, i, &sim_lines, &sim_field);
const std::string sim_field_str(sim_field);
if (sim_field_str == "model-defn") {
if (first_visit < 0) input->one("variable kim_update equal 0");
else input->one("variable kim_update equal 1");
if (domain->periodicity[0] &&
domain->periodicity[1] &&
domain->periodicity[2])
input->one("variable kim_periodic equal 1");
else if (!domain->periodicity[0] &&
!domain->periodicity[1] &&
!domain->periodicity[2])
input->one("variable kim_periodic equal 0");
else input->one("variable kim_periodic equal 2");
// KIM Simulator Model has a Model definition
no_model_definition = false;
for (int j = 0; j < sim_lines; ++j) {
KIM_SimulatorModel_GetSimulatorFieldLine(
simulatorModel, i, j, &sim_value);
if (utils::strmatch(sim_value, "^KIM_SET_TYPE_PARAMETERS")) {
// Notes regarding the KIM_SET_TYPE_PARAMETERS command
// * This is an INTERNAL command.
// * It is intended for use only by KIM Simulator Models.
// * It is not possible to use this command outside of the context
// of the kim interactions command and KIM Simulator Models.
// * The command performs a transformation from symbolic
// string-based atom types to lammps numeric atom types for
// the pair_coeff and charge settings.
// * The command is not documented fully as it is expected to be
// temporary. Eventually it should be replaced by a more
// comprehensive symbolic types support in lammps.
KIM_SET_TYPE_PARAMETERS(sim_value);
} else {
input->one(sim_value);
}
}
}
}
if (no_model_definition)
error->all(FLERR, "KIM Simulator Model has no Model definition");
KIM_SimulatorModel_OpenAndInitializeTemplateMap(simulatorModel);
} else {
// not a simulator model. issue pair_style and pair_coeff commands.
if (fixed_types)
error->all(FLERR, "fixed_types cannot be used with a KIM Portable Model");
// NOTE: all references to arg must appear before calls to input->one()
// as that will reset the argument vector.
auto cmd1 = fmt::format("pair_style kim {}", model_name);
auto cmd2 =
fmt::format("pair_coeff * * {}", fmt::join(arg, arg + narg, " "));
input->one(cmd1);
input->one(cmd2);
}
// End output to log file
input->write_echo("#=== END kim interactions ============================="
"=======\n\n");
}
/* ---------------------------------------------------------------------- */
void KimInteractions::KIM_SET_TYPE_PARAMETERS(const std::string &input_line) const
{
auto words = utils::split_words(input_line);
const std::string key = words[1];
if (key != "pair" && key != "charge")
error->one(FLERR, "Unrecognized KEY {} for "
"KIM_SET_TYPE_PARAMETERS command", key);
std::string filename = words[2];
std::vector<std::string> species(words.begin() + 3, words.end());
if ((int)species.size() != atom->ntypes)
error->one(FLERR, "Incorrect args for KIM_SET_TYPE_PARAMETERS command");
FILE *fp = nullptr;
if (comm->me == 0) {
fp = fopen(filename.c_str(), "r");
if (fp == nullptr) error->one(FLERR, "Parameter file not found");
}
char line[MAXLINE], *ptr;
int n, eof = 0;
while (1) {
if (comm->me == 0) {
ptr = fgets(line, MAXLINE,fp);
if (ptr == nullptr) {
eof = 1;
fclose(fp);
} else n = strlen(line) + 1;
}
MPI_Bcast(&eof, 1, MPI_INT, 0, world);
if (eof) break;
MPI_Bcast(&n, 1, MPI_INT, 0, world);
MPI_Bcast(line, n, MPI_CHAR, 0, world);
auto trimmed = utils::trim_comment(line);
if (trimmed.find_first_not_of(" \t\n\r") == std::string::npos) continue;
words = utils::split_words(trimmed);
if (key == "pair") {
for (int ia = 0; ia < atom->ntypes; ++ia) {
for (int ib = ia; ib < atom->ntypes; ++ib)
if (((species[ia] == words[0]) && (species[ib] == words[1]))
|| ((species[ib] == words[0]) && (species[ia] == words[1])))
input->one(fmt::format("pair_coeff {} {} {}", ia + 1, ib + 1,
fmt::join(words.begin() + 2, words.end(), " ")));
}
} else {
for (int ia = 0; ia < atom->ntypes; ++ia)
if (species[ia] == words[0])
input->one(fmt::format("set type {} charge {}", ia + 1, words[1]));
}
}
}
/* ---------------------------------------------------------------------- */
int KimInteractions::species_to_atomic_no(const std::string &species) const
{
if (species == "H") return 1;
else if (species == "He") return 2;
else if (species == "Li") return 3;
else if (species == "Be") return 4;
else if (species == "B") return 5;
else if (species == "C") return 6;
else if (species == "N") return 7;
else if (species == "O") return 8;
else if (species == "F") return 9;
else if (species == "Ne") return 10;
else if (species == "Na") return 11;
else if (species == "Mg") return 12;
else if (species == "Al") return 13;
else if (species == "Si") return 14;
else if (species == "P") return 15;
else if (species == "S") return 16;
else if (species == "Cl") return 17;
else if (species == "Ar") return 18;
else if (species == "K") return 19;
else if (species == "Ca") return 20;
else if (species == "Sc") return 21;
else if (species == "Ti") return 22;
else if (species == "V") return 23;
else if (species == "Cr") return 24;
else if (species == "Mn") return 25;
else if (species == "Fe") return 26;
else if (species == "Co") return 27;
else if (species == "Ni") return 28;
else if (species == "Cu") return 29;
else if (species == "Zn") return 30;
else if (species == "Ga") return 31;
else if (species == "Ge") return 32;
else if (species == "As") return 33;
else if (species == "Se") return 34;
else if (species == "Br") return 35;
else if (species == "Kr") return 36;
else if (species == "Rb") return 37;
else if (species == "Sr") return 38;
else if (species == "Y") return 39;
else if (species == "Zr") return 40;
else if (species == "Nb") return 41;
else if (species == "Mo") return 42;
else if (species == "Tc") return 43;
else if (species == "Ru") return 44;
else if (species == "Rh") return 45;
else if (species == "Pd") return 46;
else if (species == "Ag") return 47;
else if (species == "Cd") return 48;
else if (species == "In") return 49;
else if (species == "Sn") return 50;
else if (species == "Sb") return 51;
else if (species == "Te") return 52;
else if (species == "I") return 53;
else if (species == "Xe") return 54;
else if (species == "Cs") return 55;
else if (species == "Ba") return 56;
else if (species == "La") return 57;
else if (species == "Ce") return 58;
else if (species == "Pr") return 59;
else if (species == "Nd") return 60;
else if (species == "Pm") return 61;
else if (species == "Sm") return 62;
else if (species == "Eu") return 63;
else if (species == "Gd") return 64;
else if (species == "Tb") return 65;
else if (species == "Dy") return 66;
else if (species == "Ho") return 67;
else if (species == "Er") return 68;
else if (species == "Tm") return 69;
else if (species == "Yb") return 70;
else if (species == "Lu") return 71;
else if (species == "Hf") return 72;
else if (species == "Ta") return 73;
else if (species == "W") return 74;
else if (species == "Re") return 75;
else if (species == "Os") return 76;
else if (species == "Ir") return 77;
else if (species == "Pt") return 78;
else if (species == "Au") return 79;
else if (species == "Hg") return 80;
else if (species == "Tl") return 81;
else if (species == "Pb") return 82;
else if (species == "Bi") return 83;
else if (species == "Po") return 84;
else if (species == "At") return 85;
else if (species == "Rn") return 86;
else if (species == "Fr") return 87;
else if (species == "Ra") return 88;
else if (species == "Ac") return 89;
else if (species == "Th") return 90;
else if (species == "Pa") return 91;
else if (species == "U") return 92;
else if (species == "Np") return 93;
else if (species == "Pu") return 94;
else if (species == "Am") return 95;
else if (species == "Cm") return 96;
else if (species == "Bk") return 97;
else if (species == "Cf") return 98;
else if (species == "Es") return 99;
else if (species == "Fm") return 100;
else if (species == "Md") return 101;
else if (species == "No") return 102;
else if (species == "Lr") return 103;
else if (species == "Rf") return 104;
else if (species == "Db") return 105;
else if (species == "Sg") return 106;
else if (species == "Bh") return 107;
else if (species == "Hs") return 108;
else if (species == "Mt") return 109;
else if (species == "Ds") return 110;
else if (species == "Rg") return 111;
else if (species == "Cn") return 112;
else if (species == "Nh") return 113;
else if (species == "Fl") return 114;
else if (species == "Mc") return 115;
else if (species == "Lv") return 116;
else if (species == "Ts") return 117;
else if (species == "Og") return 118;
else return -1;
}