n2p2 - A neural network potential package
Loading...
Searching...
No Matches
pair_hdnnp_4g.h
Go to the documentation of this file.
1/* -*- c++ -*- ----------------------------------------------------------
2 LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator
3 https://www.lammps.org/ Sandia National Laboratories
4 LAMMPS development team: developers@lammps.org
5
6 Copyright (2003) Sandia Corporation. Under the terms of Contract
7 DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains
8 certain rights in this software. This software is distributed under
9 the GNU General Public License.
10
11 This file initially came from n2p2 (https://github.com/CompPhysVienna/n2p2)
12 Copyright (2018) Andreas Singraber (University of Vienna)
13
14 See the README file in the top-level LAMMPS directory.
15------------------------------------------------------------------------- */
16
17/* ----------------------------------------------------------------------
18 Contributing authors: Emir Kocer
19 Andreas Singraber
20------------------------------------------------------------------------- */
21
22#ifdef PAIR_CLASS
23// clang-format off
24PairStyle(hdnnp/4g,PairHDNNP4G)
25// clang-format on
26#else
27
28#ifndef LMP_PAIR_HDNNP4G_H
29#define LMP_PAIR_HDNNP4G_H
30
31#include "pair.h"
32#include "InterfaceLammps.h"
33#include <gsl/gsl_multimin.h>
34
35namespace LAMMPS_NS {
36
37class PairHDNNP4G : public Pair {
38 friend class FixHDNNP;
39 friend class KSpaceHDNNP;
40 public:
41
42 PairHDNNP4G(class LAMMPS *);
43 virtual ~PairHDNNP4G();
44 virtual void compute(int, int);
45 virtual void settings(int, char **);
46 virtual void coeff(int, char **);
47 virtual void init_style();
48 virtual double init_one(int, int);
49 void init_list(int,class NeighList *);
50 virtual void write_restart(FILE *);
51 virtual void read_restart(FILE *);
52 virtual void write_restart_settings(FILE *);
53 virtual void read_restart_settings(FILE *);
54
55
56protected:
57
58 class KSpaceHDNNP *kspacehdnnp; // interface to HDNNP kspace_style
59
62 bool showew;
63 bool resetew;
65 int maxew;
68 double cflength;
69 double cfenergy;
71 char* directory;
72 char* emap;
73 class NeighList *list;
74
76
77 double *chi,*hardness,*sigmaSqrtPi,**gammaSqrt2; // QEq arrays
78 double *dEdQ,*forceLambda;
79 double grad_tol,min_tol,step; // user-defined minimization parameters
80 int maxit;
81 int minim_init_style; // initialization style for the minimization algorithm, 0: from zero or 1: from the final step
82
83 virtual void allocate();
85 void isPeriodic();
86
87 void transferCharges();
89
91
92 // Minimization Setup for Force Lambda
93 const gsl_multimin_fdfminimizer_type *T;
94 gsl_multimin_fdfminimizer *s;
95
96 gsl_multimin_function_fdf forceLambda_minimizer;
97
98 double forceLambda_f(const gsl_vector*);
99 void forceLambda_df(const gsl_vector*, gsl_vector*);
100 void forceLambda_fdf(const gsl_vector*, double*, gsl_vector*);
101 static double forceLambda_f_wrap(const gsl_vector*, void*);
102 static void forceLambda_df_wrap(const gsl_vector*, void*, gsl_vector*);
103 static void forceLambda_fdf_wrap(const gsl_vector*, void*, double*, gsl_vector*);
104
105 double E_elec;
106 double kcoeff_sum; // used in dEdQ calculation
107
108 int nmax;
109
112 double *qall_loc,*qall;
113 double *xx,*xy,*xz; // global positions
114 double *xx_loc,*xy_loc,*xz_loc; // sparse local positions
116
117 double **erfc_val;
118 double **kcos,**ksinx,**ksiny,**ksinz;
119
121 void calculateElecDerivatives(double*,double**);
122 void calculateElecForce(double**);
124
125
126 // Screening
128 double screening_f(double);
129 double screening_df(double);
130
131};
132
133}
134
135#endif
136#endif
static void forceLambda_df_wrap(const gsl_vector *, void *, gsl_vector *)
virtual void compute(int, int)
gsl_multimin_fdfminimizer * s
static void forceLambda_fdf_wrap(const gsl_vector *, void *, double *, gsl_vector *)
void forceLambda_fdf(const gsl_vector *, double *, gsl_vector *)
static double forceLambda_f_wrap(const gsl_vector *, void *)
virtual void read_restart_settings(FILE *)
void init_list(int, class NeighList *)
const gsl_multimin_fdfminimizer_type * T
class KSpaceHDNNP * kspacehdnnp
virtual void coeff(int, char **)
virtual void settings(int, char **)
virtual double init_one(int, int)
void forceLambda_df(const gsl_vector *, gsl_vector *)
gsl_multimin_function_fdf forceLambda_minimizer
virtual void read_restart(FILE *)
virtual void write_restart_settings(FILE *)
nnp::InterfaceLammps interface
virtual void write_restart(FILE *)
PairHDNNP4G(class LAMMPS *)
class NeighList * list
void calculateElecDerivatives(double *, double **)
double forceLambda_f(const gsl_vector *)
void calculateElecForce(double **)