2 * mdrun.h - mdrun header file
4 * author: Frank Zirkelbach <frank.zirkelbach@physik.uni-augsburg.de>
11 #include <sys/types.h>
18 /* main molecular dynamics api */
22 #include "list/list.h"
25 #include "potentials/harmonic_oscillator.h"
26 #include "potentials/lennard_jones.h"
27 #include "potentials/albe.h"
29 #include "potentials/tersoff_orig.h"
31 #include "potentials/tersoff.h"
35 * datatypes & definitions
38 typedef struct s_stage {
44 #define STAGE_DISPLACE_ATOM 0x00
45 #define STAGE_INSERT_ATOMS 0x01
46 #define STAGE_INSERT_MIXED_ATOMS 0x02
47 #define STAGE_CONTINUE 0x03
48 #define STAGE_ANNEAL 0x04
49 #define STAGE_CHAATTR 0x05
50 #define STAGE_CHSATTR 0x06
51 #define STAGE_SET_TEMP 0x07
52 #define STAGE_SET_TIMESTEP 0x08
53 #define STAGE_FILL 0x09
54 #define STAGE_THERMAL_INIT 0x10
55 #define STAGE_DEL_ATOMS 0x11
57 typedef struct s_mdrun {
58 char cfile[128]; // config file
60 char continue_file[128]; // moldyn save file to continue
62 u8 intalgo; // integration algorithm
63 double timestep; // timestep
65 u8 potential; // potential
66 double cutoff; // cutoff radius
67 double nnd; // next neighbour distance
69 t_3dvec dim; // simulation volume
70 u8 pbcx; // periodic boundary conditions
74 int element1; // element 1
75 int element2; // element 2
77 double lc; // lattice constant
78 u8 lattice; // type of lattice
80 u8 sattr; // system attributes
81 double temperature; // temperature
82 double pressure; // pressure
85 int relax_steps; // amount of relaxation steps
87 int prerun; // amount of loops in first run
96 int avgskip; // average skip
97 char sdir[128]; // save root
99 t_list stage; // stages
100 int s_cnt; // stage counter
103 #define SATTR_PRELAX 0x01
104 #define SATTR_TRELAX 0x02
105 #define SATTR_AVGRST 0x04
107 typedef struct s_displace_atom_params {
110 } t_displace_atom_params;
112 typedef struct s_del_atoms_params {
115 } t_del_atoms_params;
117 typedef struct s_insert_atoms_params {
119 double x0,y0,z0,x1,y1,z1;
127 } t_insert_atoms_params;
129 typedef struct s_insert_mixed_atoms_params {
140 } t_insert_mixed_atoms_params;
142 #define INS_TOTAL 0x01
143 #define INS_RECT 0x02
144 #define INS_SPHERE 0x03
147 typedef struct s_continue_params {
151 typedef struct s_anneal_params {
158 typedef struct s_chaattr_params {
166 #define CHAATTR_TOTALV 0x01
167 #define CHAATTR_REGION 0x02
168 #define CHAATTR_ELEMENT 0x04
170 typedef struct s_chsattr_params {
180 #define CHSATTR_PCTRL 0x01
181 #define CHSATTR_TCTRL 0x02
182 #define CHSATTR_PRELAX 0x04
183 #define CHSATTR_TRELAX 0x08
184 #define CHSATTR_AVGRST 0x10
185 #define CHSATTR_RSTEPS 0x20
187 typedef struct s_set_temp_params {
192 #define SET_TEMP_CURRENT 0x01
193 #define SET_TEMP_VALUE 0x02
195 typedef struct s_set_timestep_params {
197 } t_set_timestep_params;
199 typedef struct s_fill_params {
200 double lc; // lattice constant
201 int lx; // amount of lc units
207 t_part_params p_params;
208 t_defect_params d_params;
212 * function prototypes