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

#include <Kspace.h>

Collaboration diagram for nnp::Kvector:

Public Member Functions

 Kvector ()
 Constructor.
 
 Kvector (Vec3D v)
 Constructor with Vec3D.
 

Public Attributes

Vec3D k
 A single k-vector (as Vec3D).
 
double knorm2
 Square of norm of k-vector.
 
double coeff
 Precomputed coefficient for Ewald summation.
 

Detailed Description

Definition at line 34 of file Kspace.h.

Constructor & Destructor Documentation

◆ Kvector() [1/2]

Kvector::Kvector ( )

Constructor.

Definition at line 26 of file Kspace.cpp.

26 : k (Vec3D()),
27 knorm2(0.0 ),
28 coeff (0.0 )
29{
30}
Vec3D k
A single k-vector (as Vec3D).
Definition Kspace.h:38
double coeff
Precomputed coefficient for Ewald summation.
Definition Kspace.h:42
double knorm2
Square of norm of k-vector.
Definition Kspace.h:40

References coeff, k, and knorm2.

◆ Kvector() [2/2]

Kvector::Kvector ( Vec3D v)

Constructor with Vec3D.

Definition at line 32 of file Kspace.cpp.

32 : k (v ),
33 knorm2(v.norm()),
34 coeff (0.0 )
35{
36}
double norm() const
Calculate norm of vector.
Definition Vec3D.h:294

References coeff, k, and knorm2.

Member Data Documentation

◆ k

Vec3D nnp::Kvector::k

A single k-vector (as Vec3D).

Definition at line 38 of file Kspace.h.

Referenced by Kvector(), and Kvector().

◆ knorm2

double nnp::Kvector::knorm2

Square of norm of k-vector.

Definition at line 40 of file Kspace.h.

Referenced by Kvector(), and Kvector().

◆ coeff

double nnp::Kvector::coeff

Precomputed coefficient for Ewald summation.

Definition at line 42 of file Kspace.h.

Referenced by Kvector(), and Kvector().


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