foo
[physik/posic.git] / moldyn.h
1 /*
2  * moldyn.h - molecular dynamics library header file
3  *
4  * author: Frank Zirkelbach <frank.zirkelbach@physik.uni-augsburg.de>
5  *
6  */
7
8 #ifndef MOLDYN_H
9 #define MOLDYN_H
10
11 #include "math/math.h"
12 #include "random/random.h"
13 #include "list/list.h"
14
15
16 /*
17  * 
18  * datatypes
19  *
20  */
21
22 /* general */
23 typedef unsigned char u8;
24
25 /* the atom of the md simulation */
26 typedef struct s_atom {
27         t_3dvec r;              /* position */
28         t_3dvec v;              /* velocity */
29         t_3dvec f;              /* force */
30         int element;            /* number of element in pse */
31         double mass;            /* atom mass */
32         u8 bnum;                /* brand number */
33         u8 attr;                /* attributes */
34 } t_atom;
35
36 #define ATOM_ATTR_FP    0x01    /* fixed position (bulk material) */
37 #define ATOM_ATTR_HB    0x02    /* coupled to heat bath (velocity scaling) */
38
39 #define ATOM_ATTR_1BP   0x10    /* single paricle potential */
40 #define ATOM_ATTR_2BP   0x20    /* pair potential */
41 #define ATOM_ATTR_3BP   0x40    /* 3 body potential */ 
42
43 /* cell lists */
44 typedef struct s_linkcell {
45         int nx,ny,nz;           /* amount of cells in x, y and z direction */
46         int cells;              /* total amount of cells */
47         double len;             /* prefered cell edge length */
48         double x,y,z;           /* the actual cell lengthes */
49         t_list *subcell;        /* pointer to the cell lists */
50         int dnlc;               /* direct neighbour lists counter */
51         int countn;             /* amount of neighbours */
52 } t_linkcell;
53
54 #include "visual/visual.h"
55
56 # moldyn schedule structure */
57 typedef struct s_moldyn_schedule {
58         int content_count;
59         int *runs;
60         int *tau;
61         int (*hook)(t_moldyn *,void *);
62         void *hook_params;
63 } t_moldyn_schedule;
64
65 /* moldyn main structure */
66 typedef struct s_moldyn {
67         int count;              /* total amount of atoms */
68         t_atom *atom;           /* pointer to the atoms */
69
70         t_3dvec dim;            /* dimensions of the simulation volume */
71
72         /* potential force function and parameter pointers */
73         int (*pf_func1b)(struct s_moldyn *,t_atom *);
74         void *pot1b_params;
75         int (*pf_func2b)(struct s_moldyn *,t_atom *,t_atom *);
76         void *pot2b_params;
77         int (*pf_func3b)(struct s_moldyn *,t_atom *,t_atom *,t_atom *);
78         void *pot3b_params;
79         //int (*potential_force_function)(struct s_moldyn *moldyn);
80
81         double cutoff;          /* cutoff radius */
82         double cutoff_square;   /* square of the cutoff radius */
83
84         t_linkcell lc;          /* linked cell method */
85
86         double t;               /* temperature */
87
88         /* simulation schedule */
89         t_moldyn_schedule schedule;
90         int current;            /* current position in schedule */
91
92         /* integration function pointer */
93         int (*integrate)(struct s_moldyn *moldyn);
94         int time_steps;         /* amount of iterations */
95         double tau;             /* delta t */
96         double tau_square;      /* delta t squared */
97         double elapsed;         /* total elapsed time */
98
99         double energy;          /* energy */
100
101         t_visual vis;           /* visualization/log/save interface structure */
102         u8 lvstat;              /* log & vis properties */
103         unsigned int ewrite;    /* how often to log energy */
104         char efb[64];           /* energy log filename */
105         int efd;                /* fd for energy log */
106         unsigned int mwrite;    /* how often to log momentum */
107         char mfb[64];           /* momentum log filename */
108         int mfd;                /* fd for momentum log */
109         unsigned int vwrite;    /* how often to visualize atom information */
110         char vfb[64];           /* visualization file name base */
111         void *visual;           /* pointer (hack!) */
112         unsigned int swrite;    /* how often to create a save file */
113
114         u8 status;              /* general moldyn properties */
115
116         t_random random;        /* random interface */
117 } t_moldyn;
118
119 #define MOLDYN_LVSTAT_TOTAL_E           0x01
120 #define MOLDYN_LVSTAT_TOTAL_M           0x02
121 #define MOLDYN_LVSTAT_SAVE              0x04
122 #define MOLDYN_LVSTAT_VISUAL            0x08
123 #define MOLDYN_LVSTAT_INITIALIZED       0x10
124
125 #define MOLDYN_STAT_PBX                 0x08    /* periodic boudaries in x */
126 #define MOLDYN_STAT_PBY                 0x10    /* y */
127 #define MOLDYN_STAT_PBZ                 0x20    /* and z direction */
128
129
130 /*
131  *
132  * potential parameter structures
133  *
134  */
135
136 /*
137  * harmonic oscillator potential parameter structure
138  */
139
140 typedef struct s_ho_params {
141         double spring_constant;
142         double equilibrium_distance;
143 } t_ho_params;
144
145 /*
146  * lennard jones potential parameter structure
147  */
148
149 typedef struct s_lj_params {
150         double sigma6;
151         double sigma12;
152         double epsilon4;
153 } t_lj_params;
154
155 /*
156  * tersoff 
157  */
158
159 /* tersoff exchange structure to exchange 2bp and 3bp calculated values */
160 typedef struct s_tersoff_exchange {
161         double f_c,df_c;
162
163         t_3dvec dist_ij;
164         double d_ij;
165         double d_ij2;
166
167         double chi;
168
169         double *B;
170         double *mu;
171
172         double *beta;
173         double *n;
174         double *c;
175         double *d;
176         double *h;
177
178         double c2;
179         double d2;
180         double c2d2;
181         double betan;
182
183         u8 run3bp;
184 } t_tersoff_exchange;
185
186 /* tersoff multi (2!) potential parameters */
187 typedef struct s_tersoff_mult_params {
188         double S[2];            /* tersoff cutoff radii */
189         double R[2];            /* tersoff cutoff radii */
190         double Smixed;          /* mixed S radius */
191         double Rmixed;          /* mixed R radius */
192         double A[2];            /* factor of tersoff attractive part */
193         double B[2];            /* factor of tersoff repulsive part */
194         double Amixed;          /* mixed A factor */
195         double Bmixed;          /* mixed B factor */
196         double lambda[2];       /* tersoff lambda */
197         double lambda_m;        /* mixed lambda */
198         double mu[2];           /* tersoff mu */
199         double mu_m;            /* mixed mu */
200
201         double chi;
202
203         double beta[2];
204         double n[2];
205         double c[2];
206         double d[2];
207         double h[2];
208
209         t_tersoff_exchange exchange;    /* exchange between 2bp and 3bp calc */
210 } t_tersoff_params;
211
212
213
214 /*
215  *
216  *  defines
217  *
218  */
219
220 /* default values */
221
222 #define MOLDYN_TEMP                     273.0
223 #define MOLDYN_TAU                      1.0e-15
224 #define MOLDYN_CUTOFF                   1.0e-9
225 #define MOLDYN_RUNS                     1000000
226
227 #define MOLDYN_INTEGRATE_VERLET         0x00
228 #define MOLDYN_INTEGRATE_DEFAULT        MOLDYN_INTEGRATE_VERLET
229
230 #define MOLDYN_POTENTIAL_HO             0x00
231 #define MOLDYN_POTENTIAL_LJ             0x01
232 #define MOLDYN_POTENTIAL_TM             0x02
233
234 #define MOLDYN_SET_POTENTIAL            0x00
235 #define MOLDYN_SET_TEMPERATURE          0x01
236 #define MOLDYN_SET_
237 #define MOLDYN_SET_
238
239 /*
240  *
241  * phsical values / constants
242  *
243  */
244
245 #define K_BOLTZMANN             1.3807e-27                      /* Nm/K */
246 #define AMU                     1.660540e-27                    /* kg */
247
248 #define FCC                     0x01
249 #define DIAMOND                 0x02
250
251 #define C                       0x06
252 #define M_C                     (12.011*AMU)
253
254 #define SI                      0x0e
255 #define LC_SI                   0.543105e-9                             /* m */
256 #define M_SI                    (28.085*AMU)                            /* kg */
257 #define LJ_SIGMA_SI             ((0.25*sqrt(3.0)*LC_SI)/1.122462)       /* m */
258 #define LJ_EPSILON_SI           (2.1678*1.60e-19)                       /* Nm */
259
260
261 /*
262  *
263  * function prototypes
264  *
265  */
266
267 int moldyn_usage(char **argv);
268 int moldyn_parse_argv(t_moldyn *moldyn,int argc,char **argv);
269 int moldyn_log_init(t_moldyn *moldyn);
270 int moldyn_init(t_moldyn *moldyn,int argc,char **argv);
271 int moldyn_shutdown(t_moldyn *moldyn);
272
273 int create_lattice(u8 type,int element,double mass,double lc,
274                    int a,int b,int c,t_atom **atom);
275 int destroy_lattice(t_atom *atom);
276 int thermal_init(t_moldyn *moldyn);
277 int scale_velocity(t_moldyn *moldyn);
278 double get_e_kin(t_atom *atom,int count);
279 double get_e_pot(t_moldyn *moldyn);
280 double get_total_energy(t_moldyn *moldyn);
281 t_3dvec get_total_p(t_atom *atom,int count);
282
283 double estimate_time_step(t_moldyn *moldyn,double nn_dist,double t);
284
285 int link_cell_init(t_moldyn *moldyn);
286 int link_cell_update(t_moldyn *moldyn);
287 int link_cell_neighbour_index(t_moldyn *moldyn,int i,int j,int k,t_list *cell);
288 int link_cell_shutdown(t_moldyn *moldyn);
289
290 int moldyn_integrate(t_moldyn *moldyn);
291 int velocity_verlet(t_moldyn *moldyn);
292
293 int harmonic_oscillator(t_moldyn *moldyn);
294 int lennard_jones(t_moldyn *moldyn);
295
296 #endif