PND
pmd.hpp
1 #include <vector>
2 #include <array>
3 #include <cmath>
4 #include <algorithm>
5 #include "mpi.h"
6 
7 /* Constants for the random number generator */
8 #define D2P31M 2147483647.0
9 #define DMUL 16807.0
10 
11 class Atom {
12 public:
13  double type;
14  bool isResident;
15 
16  double x;
17  double y;
18  double z;
19 
20  double ax;
21  double ay;
22  double az;
23 
24  double vx;
25  double vy;
26  double vz;
27 
28  std::array<int, 6> shiftCount;
29 
30  Atom();
31 };
32 
33 class SubSystem {
34 public:
35  int pid;
36  int n;
37  int nglob;
38  double comt;
39  std::array<double, 3> al;
40  std::array<int, 3> vid;
41  std::array<int, 3> myparity;
42  std::array<int, 6> nn;
43  std::vector<std::vector<double> > sv;
44  std::array<double, 3> vSum, gvSum;
45  std::vector<Atom> atoms;
46 
47  std::array<int, 3> vproc{},
49  double Density,
52  int StepLimit,
54 
55  double kinEnergy,
59 
61  SubSystem();
62 
67  void InitNeighborNode(std::array<int, 3> vproc);
68 
73  void Update(double DeltaT);
74 
79  void Kick(double DeltaT);
80 
81 
85  void AtomCopy();
86 
92  std::vector<int> AtomMove(bool);
93 
98  void ShiftAtoms();
99 
103  void WrapAtoms();
104 
112  int bbd(Atom atom, int ku);
113 
121  int bmv(Atom atom, int ku);
122 
127  void EvalProps(int stepCount);
128 
134  void WriteXYZ(int step);
135 
142  static double Dmod(double a, double b) {
143  int n;
144  n = (int) (a / b);
145  return (a - b * n);
146  }
147 
153  static double RandR(double *seed) {
154  *seed = Dmod(*seed * DMUL, D2P31M);
155  return (*seed / D2P31M);
156  }
157 
163  static void RandVec3(double *p, double *seed) {
164  double x = 0, y = 0, s = 2.0;
165  while (s > 1.0) {
166  x = 2.0 * RandR(seed) - 1.0;
167  y = 2.0 * RandR(seed) - 1.0;
168  s = x * x + y * y;
169  }
170  p[2] = 1.0 - 2.0 * s;
171  s = 2.0 * sqrt(1.0 - s);
172  p[0] = s * x;
173  p[1] = s * y;
174  }
175 
176 };
Definition: pmd.hpp:11
double ax
acceleration on x axis
Definition: pmd.hpp:20
std::array< int, 6 > shiftCount
Track the cells that the atom has moved.
Definition: pmd.hpp:28
double ay
acceleration on y axis
Definition: pmd.hpp:21
double vy
velocity on y axis
Definition: pmd.hpp:25
double vz
velocity on y axis
Definition: pmd.hpp:26
double x
position in x axis
Definition: pmd.hpp:16
bool isResident
Marker to identify if the atom is moving out of the system after the time step.
Definition: pmd.hpp:14
Atom()
Default constructor.
Definition: pmd.cpp:22
double vx
velocity on x axis
Definition: pmd.hpp:24
double y
position in y axis
Definition: pmd.hpp:17
double az
acceleration on y axis
Definition: pmd.hpp:22
double type
identifier for atom type
Definition: pmd.hpp:13
double z
position in y axis
Definition: pmd.hpp:18
Definition: pmd.hpp:33
std::array< int, 3 > InitUcell
Unit cell system properties.
Definition: pmd.hpp:48
std::array< int, 3 > vid
Vector index of this processor.
Definition: pmd.hpp:40
int pid
sequential processor ID of this cell
Definition: pmd.hpp:35
static double RandR(double *seed)
Definition: pmd.hpp:153
void WriteXYZ(int step)
Definition: pmd.cpp:618
static double Dmod(double a, double b)
Definition: pmd.hpp:142
void Update(double DeltaT)
Definition: pmd.cpp:163
int bbd(Atom atom, int ku)
Definition: pmd.cpp:550
std::array< double, 3 > al
Box length per processor.
Definition: pmd.hpp:39
double Density
Density of fcc.
Definition: pmd.hpp:49
void Kick(double DeltaT)
Definition: pmd.cpp:173
int n
Number of resident atoms in this processor.
Definition: pmd.hpp:36
std::array< int, 3 > myparity
Parity of this processor.
Definition: pmd.hpp:41
std::array< int, 3 > vproc
Vector processor decomposition of subsystems arranged in a 3D array.
Definition: pmd.hpp:47
std::vector< std::vector< double > > sv
Shift vector to the 6 neighbors.
Definition: pmd.hpp:43
int bmv(Atom atom, int ku)
Definition: pmd.cpp:574
void EvalProps(int stepCount)
Definition: pmd.cpp:597
double comt
elapsed wall clock time & Communication time in second
Definition: pmd.hpp:38
std::vector< Atom > atoms
resident and moved in atoms
Definition: pmd.hpp:45
double temperature
Calculated temperature of the system at the end of the time-step.
Definition: pmd.hpp:58
void InitNeighborNode(std::array< int, 3 > vproc)
Definition: pmd.cpp:121
int StepAvg
Average of simulation steps before reporting system information.
Definition: pmd.hpp:53
double kinEnergy
Calculated kinetic energy while simulation.
Definition: pmd.hpp:55
double DeltaT
Time scale of single step in simulation.
Definition: pmd.hpp:51
int StepLimit
Total number of steps to carry out the simulation.
Definition: pmd.hpp:52
double InitTemp
Inital temperature of system.
Definition: pmd.hpp:50
void WrapAtoms()
Definition: pmd.cpp:482
double potEnergy
Calculated potential energy while simulation.
Definition: pmd.hpp:56
void ShiftAtoms()
Definition: pmd.cpp:467
SubSystem()
Definition: pmd.cpp:30
std::array< int, 6 > nn
Neighbor node list of this processor.
Definition: pmd.hpp:42
double totEnergy
Calculated total energy energy while simulation.
Definition: pmd.hpp:57
int nglob
Total number of atoms summed over processors.
Definition: pmd.hpp:37
static void RandVec3(double *p, double *seed)
Definition: pmd.hpp:163
std::vector< int > AtomMove(bool)
Definition: pmd.cpp:300
void AtomCopy()
Definition: pmd.cpp:183