n2p2 - A neural network potential package
Loading...
Searching...
No Matches
Kspace.h
Go to the documentation of this file.
1// n2p2 - A neural network potential package
2// Copyright (C) 2018 Andreas Singraber (University of Vienna)
3//
4// This program is free software: you can redistribute it and/or modify
5// it under the terms of the GNU General Public License as published by
6// the Free Software Foundation, either version 3 of the License, or
7// (at your option) any later version.
8//
9// This program is distributed in the hope that it will be useful,
10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12// GNU General Public License for more details.
13//
14// You should have received a copy of the GNU General Public License
15// along with this program. If not, see <https://www.gnu.org/licenses/>.
16
17#ifndef KSPACE_H
18#define KSPACE_H
19
20#include "Vec3D.h"
21#include "EwaldSetup.h"
22#include <vector> // std::vector
23
24namespace nnp
25{
35{
36public:
40 double knorm2;
42 double coeff;
43
45 Kvector();
47 Kvector(Vec3D v);
48};
49
51{
52public:
56 double eta;
58 double kCut;
60 double rCut;
62 double volume;
64 double pre;
66 int n[3];
70 std::vector<Kvector> kvectors;
71
73 KspaceGrid();
79 void setup(Vec3D box[3], EwaldSetup& ewaldSetup);
80
81private:
88 void calculatePbcCopies(double cutoffRadius);
89};
90
91}
92
93#endif
94
Setup data for Ewald summation.
Definition EwaldSetup.h:37
std::vector< Kvector > kvectors
Vector containing all k-vectors.
Definition Kspace.h:70
double pre
Ewald sum prefactor .
Definition Kspace.h:64
Vec3D kbox[3]
Reciprocal box vectors.
Definition Kspace.h:68
void setup(Vec3D box[3], EwaldSetup &ewaldSetup)
Set up reciprocal box vectors and eta.
Definition Kspace.cpp:45
double rCut
Cutoff in real space.
Definition Kspace.h:60
KspaceGrid()
Constructor.
Definition Kspace.cpp:38
double eta
Ewald summation eta parameter.
Definition Kspace.h:56
void calculatePbcCopies(double cutoffRadius)
Compute box copies in each direction.
Definition Kspace.cpp:114
KSPACESolver kspaceSolver
Method for calculating the reciprocal part.
Definition Kspace.h:54
double volume
Volume of real box.
Definition Kspace.h:62
double kCut
Cutoff in reciprocal space.
Definition Kspace.h:58
int n[3]
Required box copies in each box vector direction.
Definition Kspace.h:66
Vec3D k
A single k-vector (as Vec3D).
Definition Kspace.h:38
Kvector()
Constructor.
Definition Kspace.cpp:26
double coeff
Precomputed coefficient for Ewald summation.
Definition Kspace.h:42
double knorm2
Square of norm of k-vector.
Definition Kspace.h:40
Definition Atom.h:29
KSPACESolver
Definition Kspace.h:26
@ EWALD_SUM_LAMMPS
Solver 2: Ewald summation in LAMMPS.
Definition Kspace.h:32
@ EWALD_SUM
Solver 0: Ewald summation.
Definition Kspace.h:28
@ PPPM
Solver 1: PPPM.
Definition Kspace.h:30
Vector in 3 dimensional real space.
Definition Vec3D.h:30