n2p2 - A neural network potential package
|
#include <Kspace.h>
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< Kvector > | kvectors |
Vector containing all k-vectors. | |
Private Member Functions | |
void | calculatePbcCopies (double cutoffRadius) |
Compute box copies in each direction. | |
KspaceGrid::KspaceGrid | ( | ) |
void KspaceGrid::setup | ( | Vec3D | box[3], |
EwaldSetup & | ewaldSetup ) |
Set up reciprocal box vectors and eta.
[in] | box | Real box vectors. |
[in] | ewaldSetup | Settings of ewald summation. |
Definition at line 45 of file Kspace.cpp.
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().
|
private |
Compute box copies in each direction.
[in] | cutoffRadius | Cutoff radius. |
TODO: This is code copy from Structure class!
Definition at line 114 of file Kspace.cpp.
Referenced by setup().
KSPACESolver nnp::KspaceGrid::kspaceSolver |
double nnp::KspaceGrid::eta |
Ewald summation eta parameter.
Definition at line 56 of file Kspace.h.
Referenced by KspaceGrid(), and setup().
double nnp::KspaceGrid::kCut |
Cutoff in reciprocal space.
Definition at line 58 of file Kspace.h.
Referenced by KspaceGrid(), and setup().
double nnp::KspaceGrid::volume |
Volume of real box.
Definition at line 62 of file Kspace.h.
Referenced by KspaceGrid(), and setup().
double nnp::KspaceGrid::pre |
Ewald sum prefactor \(\frac{2\pi}{V}\).
Definition at line 64 of file Kspace.h.
Referenced by KspaceGrid(), and setup().
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().
Vec3D nnp::KspaceGrid::kbox[3] |
Reciprocal box vectors.
Definition at line 68 of file Kspace.h.
Referenced by calculatePbcCopies(), and setup().
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().