n2p2 - A neural network potential package
Loading...
Searching...
No Matches
nnp::KspaceGrid Class Reference

#include <Kspace.h>

Collaboration diagram for nnp::KspaceGrid:

Public Member Functions

 KspaceGrid ()
 Constructor.
 
void setup (Vec3D box[3], EwaldSetup &ewaldSetup)
 Set up reciprocal box vectors and eta.
 

Public Attributes

KSPACESolver kspaceSolver
 Method for calculating the reciprocal part.
 
double eta
 Ewald summation eta parameter.
 
double kCut
 Cutoff in reciprocal space.
 
double rCut
 Cutoff in real space.
 
double volume
 Volume of real box.
 
double pre
 Ewald sum prefactor \(\frac{2\pi}{V}\).
 
int n [3]
 Required box copies in each box vector direction.
 
Vec3D kbox [3]
 Reciprocal box vectors.
 
std::vector< Kvectorkvectors
 Vector containing all k-vectors.
 

Private Member Functions

void calculatePbcCopies (double cutoffRadius)
 Compute box copies in each direction.
 

Detailed Description

Definition at line 50 of file Kspace.h.

Constructor & Destructor Documentation

◆ KspaceGrid()

KspaceGrid::KspaceGrid ( )

Constructor.

Definition at line 38 of file Kspace.cpp.

38 : eta (0.0),
39 kCut (0.0),
40 volume(0.0),
41 pre (0.0)
42{
43}
double pre
Ewald sum prefactor .
Definition Kspace.h:64
double eta
Ewald summation eta parameter.
Definition Kspace.h:56
double volume
Volume of real box.
Definition Kspace.h:62
double kCut
Cutoff in reciprocal space.
Definition Kspace.h:58

References eta, kCut, pre, and volume.

Member Function Documentation

◆ setup()

void KspaceGrid::setup ( Vec3D box[3],
EwaldSetup & ewaldSetup )

Set up reciprocal box vectors and eta.

Parameters
[in]boxReal box vectors.
[in]ewaldSetupSettings of ewald summation.

Definition at line 45 of file Kspace.cpp.

46{
47 volume = fabs(box[0] * (box[1].cross(box[2])));
48 pre = 2.0 * M_PI / volume;
49
50 kbox[0] = pre * box[1].cross(box[2]);
51 kbox[1] = pre * box[2].cross(box[0]);
52 kbox[2] = pre * box[0].cross(box[1]);
53
54 eta = ewaldSetup.params.eta;
55 kCut = ewaldSetup.params.kCut;
56
57 // Compute box copies required in each direction.
59
60 double halfSphere = 1; // TODO
61 if (halfSphere)
62 {
63 // Compute k-grid (only half sphere because of symmetry).
64 for (int i = 0; i <= n[0]; ++i)
65 {
66 int sj = -n[1];
67 if (i == 0) sj = 0;
68 for (int j = sj; j <= n[1]; ++j)
69 {
70 int sk = -n[2];
71 if (i == 0 && j == 0) sk = 0;
72 for (int k = sk; k <= n[2]; ++k)
73 {
74 if (i == 0 && j == 0 && k == 0) continue;
75 Vec3D kv = i * kbox[0] + j * kbox[1] + k * kbox[2];
76 double knorm2 = kv.norm2();
77 if (kv.norm2() < kCut * kCut)
78 {
79 //fprintf(stderr, "sqk = %24.16E\n", kv.norm());
80 kvectors.push_back(kv);
81 kvectors.back().knorm2 = knorm2; // TODO: Necessary?
82 kvectors.back().coeff = exp(-0.5 * eta * eta * knorm2)
83 * 2.0 * pre / knorm2;
84 }
85 }
86 }
87 }
88 }
89 else
90 {
91 // Compute full k-grid.
92 for (int i = -n[0]; i <= n[0]; ++i)
93 {
94 for (int j = -n[1]; j <= n[1]; ++j)
95 {
96 for (int k = -n[2]; k <= n[2]; ++k)
97 {
98 if (i == 0 && j == 0 && k == 0) continue;
99 Vec3D kv = i * kbox[0] + j * kbox[1] + k * kbox[2];
100 double knorm2 = kv.norm2();
101 if (kv.norm2() < kCut * kCut)
102 {
103 kvectors.push_back(kv);
104 kvectors.back().knorm2 = knorm2; // TODO: Necessary?
105 kvectors.back().coeff = exp(-0.5 * eta * eta * knorm2)
106 * 2.0 * pre / knorm2;
107 }
108 }
109 }
110 }
111 }
112}
EwaldParameters params
Definition EwaldSetup.h:39
std::vector< Kvector > kvectors
Vector containing all k-vectors.
Definition Kspace.h:70
Vec3D kbox[3]
Reciprocal box vectors.
Definition Kspace.h:68
void calculatePbcCopies(double cutoffRadius)
Compute box copies in each direction.
Definition Kspace.cpp:114
int n[3]
Required box copies in each box vector direction.
Definition Kspace.h:66
double eta
Width of the gaussian screening charges.
Definition IEwaldTrunc.h:40
double kCut
Cutoff in reciprocal space.
Definition IEwaldTrunc.h:44
double norm2() const
Calculate square of norm of vector.
Definition Vec3D.h:299
Vec3D cross(Vec3D const &v) const
Cross product, argument vector is second in product.
Definition Vec3D.h:319

References calculatePbcCopies(), nnp::Vec3D::cross(), nnp::EwaldParameters::eta, eta, kbox, nnp::EwaldParameters::kCut, kCut, kvectors, n, nnp::Vec3D::norm2(), nnp::EwaldSetup::params, pre, and volume.

Referenced by nnp::Structure::calculateDAdrQ(), and nnp::Structure::calculateElectrostaticEnergy().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ calculatePbcCopies()

void KspaceGrid::calculatePbcCopies ( double cutoffRadius)
private

Compute box copies in each direction.

Parameters
[in]cutoffRadiusCutoff radius.

TODO: This is code copy from Structure class!

Definition at line 114 of file Kspace.cpp.

115{
116 Vec3D axb;
117 Vec3D axc;
118 Vec3D bxc;
119
120 axb = kbox[0].cross(kbox[1]).normalize();
121 axc = kbox[0].cross(kbox[2]).normalize();
122 bxc = kbox[1].cross(kbox[2]).normalize();
123
124 double proja = fabs(kbox[0] * bxc);
125 double projb = fabs(kbox[1] * axc);
126 double projc = fabs(kbox[2] * axb);
127
128 n[0] = 0;
129 n[1] = 0;
130 n[2] = 0;
131 while (n[0] * proja <= cutoffRadius) n[0]++;
132 while (n[1] * projb <= cutoffRadius) n[1]++;
133 while (n[2] * projc <= cutoffRadius) n[2]++;
134
135 return;
136}

References kbox, and n.

Referenced by setup().

Here is the caller graph for this function:

Member Data Documentation

◆ kspaceSolver

KSPACESolver nnp::KspaceGrid::kspaceSolver

Method for calculating the reciprocal part.

Definition at line 54 of file Kspace.h.

◆ eta

double nnp::KspaceGrid::eta

Ewald summation eta parameter.

Definition at line 56 of file Kspace.h.

Referenced by KspaceGrid(), and setup().

◆ kCut

double nnp::KspaceGrid::kCut

Cutoff in reciprocal space.

Definition at line 58 of file Kspace.h.

Referenced by KspaceGrid(), and setup().

◆ rCut

double nnp::KspaceGrid::rCut

Cutoff in real space.

Definition at line 60 of file Kspace.h.

◆ volume

double nnp::KspaceGrid::volume

Volume of real box.

Definition at line 62 of file Kspace.h.

Referenced by KspaceGrid(), and setup().

◆ pre

double nnp::KspaceGrid::pre

Ewald sum prefactor \(\frac{2\pi}{V}\).

Definition at line 64 of file Kspace.h.

Referenced by KspaceGrid(), and setup().

◆ n

int nnp::KspaceGrid::n[3]

Required box copies in each box vector direction.

Definition at line 66 of file Kspace.h.

Referenced by calculatePbcCopies(), and setup().

◆ kbox

Vec3D nnp::KspaceGrid::kbox[3]

Reciprocal box vectors.

Definition at line 68 of file Kspace.h.

Referenced by calculatePbcCopies(), and setup().

◆ kvectors

std::vector<Kvector> nnp::KspaceGrid::kvectors

Vector containing all k-vectors.

Definition at line 70 of file Kspace.h.

Referenced by nnp::Structure::calculateDAdrQ(), nnp::Structure::calculateElectrostaticEnergy(), and setup().


The documentation for this class was generated from the following files: