815fc876717415cb17f1464ed6db5a04b50b0c7e
[physik/posic.git] / moldyn.c
1 /*
2  * moldyn.c - molecular dynamics library main file
3  *
4  * author: Frank Zirkelbach <frank.zirkelbach@physik.uni-augsburg.de>
5  *
6  */
7
8 #define _GNU_SOURCE
9 #include <stdio.h>
10 #include <stdlib.h>
11 #include <string.h>
12 #include <sys/types.h>
13 #include <sys/stat.h>
14 #include <fcntl.h>
15 #include <unistd.h>
16 #include <math.h>
17
18 #include "moldyn.h"
19
20 #include "math/math.h"
21 #include "init/init.h"
22 #include "random/random.h"
23 #include "visual/visual.h"
24 #include "list/list.h"
25
26
27 int moldyn_init(t_moldyn *moldyn,int argc,char **argv) {
28
29         //int ret;
30
31         //ret=moldyn_parse_argv(moldyn,argc,argv);
32         //if(ret<0) return ret;
33
34         memset(moldyn,0,sizeof(t_moldyn));
35
36         rand_init(&(moldyn->random),NULL,1);
37         moldyn->random.status|=RAND_STAT_VERBOSE;
38
39         return 0;
40 }
41
42 int moldyn_shutdown(t_moldyn *moldyn) {
43
44         printf("[moldyn] shutdown\n");
45         moldyn_log_shutdown(moldyn);
46         link_cell_shutdown(moldyn);
47         rand_close(&(moldyn->random));
48         free(moldyn->atom);
49
50         return 0;
51 }
52
53 int set_int_alg(t_moldyn *moldyn,u8 algo) {
54
55         switch(algo) {
56                 case MOLDYN_INTEGRATE_VERLET:
57                         moldyn->integrate=velocity_verlet;
58                         break;
59                 default:
60                         printf("unknown integration algorithm: %02x\n",algo);
61                         return -1;
62         }
63
64         return 0;
65 }
66
67 int set_cutoff(t_moldyn *moldyn,double cutoff) {
68
69         moldyn->cutoff=cutoff;
70
71         return 0;
72 }
73
74 int set_temperature(t_moldyn *moldyn,double t) {
75         
76         moldyn->t=t;
77
78         return 0;
79 }
80
81 int set_dim(t_moldyn *moldyn,double x,double y,double z,u8 visualize) {
82
83         moldyn->dim.x=x;
84         moldyn->dim.y=y;
85         moldyn->dim.z=z;
86
87         if(visualize) {
88                 moldyn->vis.dim.x=x;
89                 moldyn->vis.dim.y=y;
90                 moldyn->vis.dim.z=z;
91         }
92
93         return 0;
94 }
95
96 int set_nn_dist(t_moldyn *moldyn,double dist) {
97
98         moldyn->nnd=dist;
99
100         return 0;
101 }
102
103 int set_pbc(t_moldyn *moldyn,u8 x,u8 y,u8 z) {
104
105         if(x)
106                 moldyn->status|=MOLDYN_STAT_PBX;
107
108         if(y)
109                 moldyn->status|=MOLDYN_STAT_PBY;
110
111         if(z)
112                 moldyn->status|=MOLDYN_STAT_PBZ;
113
114         return 0;
115 }
116
117 int set_potential1b(t_moldyn *moldyn,pf_func1b func,void *params) {
118
119         moldyn->func1b=func;
120         moldyn->pot1b_params=params;
121
122         return 0;
123 }
124
125 int set_potential2b(t_moldyn *moldyn,pf_func2b func,void *params) {
126
127         moldyn->func2b=func;
128         moldyn->pot2b_params=params;
129
130         return 0;
131 }
132
133 int set_potential3b(t_moldyn *moldyn,pf_func3b func,void *params) {
134
135         moldyn->func3b=func;
136         moldyn->pot3b_params=params;
137
138         return 0;
139 }
140
141 int moldyn_set_log(t_moldyn *moldyn,u8 type,char *fb,int timer) {
142
143         switch(type) {
144                 case LOG_TOTAL_ENERGY:
145                         moldyn->ewrite=timer;
146                         moldyn->efd=open(fb,O_WRONLY|O_CREAT|O_TRUNC);
147                         if(moldyn->efd<0) {
148                                 perror("[moldyn] efd open");
149                                 return moldyn->efd;
150                         }
151                         dprintf(moldyn->efd,"# total energy log file\n");
152                         break;
153                 case LOG_TOTAL_MOMENTUM:
154                         moldyn->mwrite=timer;
155                         moldyn->mfd=open(fb,O_WRONLY|O_CREAT|O_TRUNC);
156                         if(moldyn->mfd<0) {
157                                 perror("[moldyn] mfd open");
158                                 return moldyn->mfd;
159                         }
160                         dprintf(moldyn->efd,"# total momentum log file\n");
161                         break;
162                 case SAVE_STEP:
163                         moldyn->swrite=timer;
164                         strncpy(moldyn->sfb,fb,63);
165                         break;
166                 case VISUAL_STEP:
167                         moldyn->vwrite=timer;
168                         strncpy(moldyn->vfb,fb,63);
169                         visual_init(&(moldyn->vis),fb);
170                         break;
171                 default:
172                         printf("unknown log mechanism: %02x\n",type);
173                         return -1;
174         }
175
176         return 0;
177 }
178
179 int moldyn_log_shutdown(t_moldyn *moldyn) {
180
181         printf("[moldyn] log shutdown\n");
182         if(moldyn->efd) close(moldyn->efd);
183         if(moldyn->mfd) close(moldyn->mfd);
184         if(&(moldyn->vis)) visual_tini(&(moldyn->vis));
185
186         return 0;
187 }
188
189 int create_lattice(t_moldyn *moldyn,u8 type,double lc,int element,double mass,
190                    u8 attr,u8 bnum,int a,int b,int c) {
191
192         int count;
193         int ret;
194         t_3dvec origin;
195
196         count=a*b*c;
197
198         if(type==FCC) count*=4;
199
200         if(type==DIAMOND) count*=8;
201
202         moldyn->atom=malloc(count*sizeof(t_atom));
203         if(moldyn->atom==NULL) {
204                 perror("malloc (atoms)");
205                 return -1;
206         }
207
208         v3_zero(&origin);
209
210         switch(type) {
211                 case FCC:
212                         ret=fcc_init(a,b,c,lc,moldyn->atom,&origin);
213                         break;
214                 case DIAMOND:
215                         ret=diamond_init(a,b,c,lc,moldyn->atom,&origin);
216                         break;
217                 default:
218                         printf("unknown lattice type (%02x)\n",type);
219                         return -1;
220         }
221
222         /* debug */
223         if(ret!=count) {
224                 printf("ok, there is something wrong ...\n");
225                 printf("calculated -> %d atoms\n",count);
226                 printf("created -> %d atoms\n",ret);
227                 return -1;
228         }
229
230         moldyn->count=count;
231         printf("[moldyn] created lattice with %d atoms\n",count);
232
233         while(count) {
234                 count-=1;
235                 moldyn->atom[count].element=element;
236                 moldyn->atom[count].mass=mass;
237                 moldyn->atom[count].attr=attr;
238                 moldyn->atom[count].bnum=bnum;
239                 check_per_bound(moldyn,&(moldyn->atom[count].r));
240         }
241
242
243         return ret;
244 }
245
246 int add_atom(t_moldyn *moldyn,int element,double mass,u8 bnum,u8 attr,
247              t_3dvec *r,t_3dvec *v) {
248
249         t_atom *atom;
250         void *ptr;
251         int count;
252         
253         atom=moldyn->atom;
254         count=++(moldyn->count);
255
256         ptr=realloc(atom,count*sizeof(t_atom));
257         if(!ptr) {
258                 perror("[moldyn] realloc (add atom)");
259                 return -1;
260         }
261         moldyn->atom=ptr;
262
263         atom=moldyn->atom;
264         atom[count-1].r=*r;
265         atom[count-1].v=*v;
266         atom[count-1].element=element;
267         atom[count-1].mass=mass;
268         atom[count-1].bnum=bnum;
269         atom[count-1].attr=attr;
270
271         return 0;
272 }
273
274 int destroy_atoms(t_moldyn *moldyn) {
275
276         if(moldyn->atom) free(moldyn->atom);
277
278         return 0;
279 }
280
281 int thermal_init(t_moldyn *moldyn) {
282
283         /*
284          * - gaussian distribution of velocities
285          * - zero total momentum
286          * - velocity scaling (E = 3/2 N k T), E: kinetic energy
287          */
288
289         int i;
290         double v,sigma;
291         t_3dvec p_total,delta;
292         t_atom *atom;
293         t_random *random;
294
295         atom=moldyn->atom;
296         random=&(moldyn->random);
297
298         /* gaussian distribution of velocities */
299         v3_zero(&p_total);
300         for(i=0;i<moldyn->count;i++) {
301                 sigma=sqrt(2.0*K_BOLTZMANN*moldyn->t/atom[i].mass);
302                 /* x direction */
303                 v=sigma*rand_get_gauss(random);
304                 atom[i].v.x=v;
305                 p_total.x+=atom[i].mass*v;
306                 /* y direction */
307                 v=sigma*rand_get_gauss(random);
308                 atom[i].v.y=v;
309                 p_total.y+=atom[i].mass*v;
310                 /* z direction */
311                 v=sigma*rand_get_gauss(random);
312                 atom[i].v.z=v;
313                 p_total.z+=atom[i].mass*v;
314         }
315
316         /* zero total momentum */
317         v3_scale(&p_total,&p_total,1.0/moldyn->count);
318         for(i=0;i<moldyn->count;i++) {
319                 v3_scale(&delta,&p_total,1.0/atom[i].mass);
320                 v3_sub(&(atom[i].v),&(atom[i].v),&delta);
321         }
322
323         /* velocity scaling */
324         scale_velocity(moldyn,VSCALE_INIT_EQUI);
325
326         return 0;
327 }
328
329 int scale_velocity(t_moldyn *moldyn,u8 type) {
330
331         int i;
332         double e,scale;
333         t_atom *atom;
334
335         atom=moldyn->atom;
336
337         /*
338          * - velocity scaling (E = 3/2 N k T), E: kinetic energy
339          */
340
341         e=0.0;
342         for(i=0;i<moldyn->count;i++)
343                 e+=0.5*atom[i].mass*v3_absolute_square(&(atom[i].v));
344         scale=(1.5*moldyn->count*K_BOLTZMANN*moldyn->t)/e;
345         if(type&VSCALE_INIT_EQUI) scale*=2.0; /* equipartition theorem */
346         scale=sqrt(scale);
347         for(i=0;i<moldyn->count;i++)
348                 v3_scale(&(atom[i].v),&(atom[i].v),scale);
349
350         return 0;
351 }
352
353 double get_e_kin(t_moldyn *moldyn) {
354
355         int i;
356         t_atom *atom;
357
358         atom=moldyn->atom;
359         moldyn->ekin=0.0;
360
361         for(i=0;i<moldyn->count;i++)
362                 moldyn->ekin+=0.5*atom[i].mass*v3_absolute_square(&(atom[i].v));
363
364         return moldyn->ekin;
365 }
366
367 double get_e_pot(t_moldyn *moldyn) {
368
369         return moldyn->energy;
370 }
371
372 double update_e_kin(t_moldyn *moldyn) {
373
374         return(get_e_kin(moldyn));
375 }
376
377 double get_total_energy(t_moldyn *moldyn) {
378
379         return(moldyn->ekin+moldyn->energy);
380 }
381
382 t_3dvec get_total_p(t_moldyn *moldyn) {
383
384         t_3dvec p,p_total;
385         int i;
386         t_atom *atom;
387
388         atom=moldyn->atom;
389
390         v3_zero(&p_total);
391         for(i=0;i<moldyn->count;i++) {
392                 v3_scale(&p,&(atom[i].v),atom[i].mass);
393                 v3_add(&p_total,&p_total,&p);
394         }
395
396         return p_total;
397 }
398
399 double estimate_time_step(t_moldyn *moldyn,double nn_dist) {
400
401         double tau;
402
403         /* nn_dist is the nearest neighbour distance */
404
405         if(moldyn->t==5.0) {
406                 printf("[moldyn] i do not estimate timesteps below %f K!\n",
407                        MOLDYN_CRITICAL_EST_TEMP);
408                 return 23.42;
409         }
410
411         tau=(0.05*nn_dist*moldyn->atom[0].mass)/sqrt(3.0*K_BOLTZMANN*moldyn->t);
412
413         return tau;     
414 }
415
416 /*
417  * numerical tricks
418  */
419
420 /* linked list / cell method */
421
422 int link_cell_init(t_moldyn *moldyn) {
423
424         t_linkcell *lc;
425         int i;
426         int fd;
427
428         fd=open("/dev/null",O_WRONLY);
429
430         lc=&(moldyn->lc);
431
432         /* partitioning the md cell */
433         lc->nx=moldyn->dim.x/moldyn->cutoff;
434         lc->x=moldyn->dim.x/lc->nx;
435         lc->ny=moldyn->dim.y/moldyn->cutoff;
436         lc->y=moldyn->dim.y/lc->ny;
437         lc->nz=moldyn->dim.z/moldyn->cutoff;
438         lc->z=moldyn->dim.z/lc->nz;
439
440         lc->cells=lc->nx*lc->ny*lc->nz;
441         lc->subcell=malloc(lc->cells*sizeof(t_list));
442
443         printf("[moldyn] initializing linked cells (%d)\n",lc->cells);
444
445         for(i=0;i<lc->cells;i++)
446                 //list_init(&(lc->subcell[i]),1);
447                 list_init(&(lc->subcell[i]),fd);
448
449         link_cell_update(moldyn);
450         
451         return 0;
452 }
453
454 int link_cell_update(t_moldyn *moldyn) {
455
456         int count,i,j,k;
457         int nx,ny,nz;
458         t_atom *atom;
459         t_linkcell *lc;
460
461         atom=moldyn->atom;
462         lc=&(moldyn->lc);
463
464         nx=lc->nx;
465         ny=lc->ny;
466         nz=lc->nz;
467
468         for(i=0;i<lc->cells;i++)
469                 list_destroy(&(moldyn->lc.subcell[i]));
470         
471         for(count=0;count<moldyn->count;count++) {
472                 i=(atom[count].r.x+(moldyn->dim.x/2))/lc->x;
473                 j=(atom[count].r.y+(moldyn->dim.y/2))/lc->y;
474                 k=(atom[count].r.z+(moldyn->dim.z/2))/lc->z;
475                 list_add_immediate_ptr(&(moldyn->lc.subcell[i+j*nx+k*nx*ny]),
476                                        &(atom[count]));
477         }
478
479         return 0;
480 }
481
482 int link_cell_neighbour_index(t_moldyn *moldyn,int i,int j,int k,t_list *cell) {
483
484         t_linkcell *lc;
485         int a;
486         int count1,count2;
487         int ci,cj,ck;
488         int nx,ny,nz;
489         int x,y,z;
490         u8 bx,by,bz;
491
492         lc=&(moldyn->lc);
493         nx=lc->nx;
494         ny=lc->ny;
495         nz=lc->nz;
496         count1=1;
497         count2=27;
498         a=nx*ny;
499
500         cell[0]=lc->subcell[i+j*nx+k*a];
501         for(ci=-1;ci<=1;ci++) {
502                 bx=0;
503                 x=i+ci;
504                 if((x<0)||(x>=nx)) {
505                         x=(x+nx)%nx;
506                         bx=1;
507                 }
508                 for(cj=-1;cj<=1;cj++) {
509                         by=0;
510                         y=j+cj;
511                         if((y<0)||(y>=ny)) {
512                                 y=(y+ny)%ny;
513                                 by=1;
514                         }
515                         for(ck=-1;ck<=1;ck++) {
516                                 bz=0;
517                                 z=k+ck;
518                                 if((z<0)||(z>=nz)) {
519                                         z=(z+nz)%nz;
520                                         bz=1;
521                                 }
522                                 if(!(ci|cj|ck)) continue;
523                                 if(bx|by|bz) {
524                                         cell[--count2]=lc->subcell[x+y*nx+z*a];
525                                 }
526                                 else {
527                                         cell[count1++]=lc->subcell[x+y*nx+z*a];
528                                 }
529                         }
530                 }
531         }
532
533         lc->dnlc=count1;
534         lc->countn=27;
535
536         return count2;
537 }
538
539 int link_cell_shutdown(t_moldyn *moldyn) {
540
541         int i;
542         t_linkcell *lc;
543
544         lc=&(moldyn->lc);
545
546         for(i=0;i<lc->nx*lc->ny*lc->nz;i++)
547                 list_shutdown(&(moldyn->lc.subcell[i]));
548
549         return 0;
550 }
551
552 int moldyn_add_schedule(t_moldyn *moldyn,int runs,double tau) {
553
554         int count;
555         void *ptr;
556         t_moldyn_schedule *schedule;
557
558         schedule=&(moldyn->schedule);
559         count=++(schedule->content_count);
560
561         ptr=realloc(moldyn->schedule.runs,count*sizeof(int));
562         if(!ptr) {
563                 perror("[moldyn] realloc (runs)");
564                 return -1;
565         }
566         moldyn->schedule.runs=ptr;
567         moldyn->schedule.runs[count-1]=runs;
568
569         ptr=realloc(schedule->tau,count*sizeof(double));
570         if(!ptr) {
571                 perror("[moldyn] realloc (tau)");
572                 return -1;
573         }
574         moldyn->schedule.tau=ptr;
575         moldyn->schedule.tau[count-1]=tau;
576
577         return 0;
578 }
579
580 int moldyn_set_schedule_hook(t_moldyn *moldyn,void *hook,void *hook_params) {
581
582         moldyn->schedule.hook=hook;
583         moldyn->schedule.hook_params=hook_params;
584         
585         return 0;
586 }
587
588 /*
589  *
590  * 'integration of newtons equation' - algorithms
591  *
592  */
593
594 /* start the integration */
595
596 int moldyn_integrate(t_moldyn *moldyn) {
597
598         int i,sched;
599         unsigned int e,m,s,v;
600         t_3dvec p;
601         t_moldyn_schedule *schedule;
602         t_atom *atom;
603         int fd;
604         char fb[128];
605         double ds;
606
607         schedule=&(moldyn->schedule);
608         atom=moldyn->atom;
609
610         /* initialize linked cell method */
611         link_cell_init(moldyn);
612
613         /* logging & visualization */
614         e=moldyn->ewrite;
615         m=moldyn->mwrite;
616         s=moldyn->swrite;
617         v=moldyn->vwrite;
618
619         /* sqaure of some variables */
620         moldyn->tau_square=moldyn->tau*moldyn->tau;
621         moldyn->cutoff_square=moldyn->cutoff*moldyn->cutoff;
622         /* calculate initial forces */
623         potential_force_calc(moldyn);
624
625         /* do some checks before we actually start calculating bullshit */
626         if(moldyn->cutoff>0.5*moldyn->dim.x)
627                 printf("[moldyn] warning: cutoff > 0.5 x dim.x\n");
628         if(moldyn->cutoff>0.5*moldyn->dim.y)
629                 printf("[moldyn] warning: cutoff > 0.5 x dim.y\n");
630         if(moldyn->cutoff>0.5*moldyn->dim.z)
631                 printf("[moldyn] warning: cutoff > 0.5 x dim.z\n");
632         ds=0.5*atom[0].f.x*moldyn->tau_square/atom[0].mass;
633         if(ds>0.05*moldyn->nnd)
634                 printf("[moldyn] warning: forces too high / tau too small!\n");
635
636         /* zero absolute time */
637         moldyn->time=0.0;
638
639         for(sched=0;sched<moldyn->schedule.content_count;sched++) {
640
641                 /* setting amount of runs and finite time step size */
642                 moldyn->tau=schedule->tau[sched];
643                 moldyn->tau_square=moldyn->tau*moldyn->tau;
644                 moldyn->time_steps=schedule->runs[sched];
645
646         /* integration according to schedule */
647
648         for(i=0;i<moldyn->time_steps;i++) {
649
650                 /* integration step */
651                 moldyn->integrate(moldyn);
652
653                 /* increase absolute time */
654                 moldyn->time+=moldyn->tau;
655
656                 /* check for log & visualization */
657                 if(e) {
658                         if(!(i%e))
659                                 dprintf(moldyn->efd,
660                                         "%.15f %.45f %.45f %.45f\n",
661                                         moldyn->time,update_e_kin(moldyn),
662                                         moldyn->energy,
663                                         get_total_energy(moldyn));
664                 }
665                 if(m) {
666                         if(!(i%m)) {
667                                 p=get_total_p(moldyn);
668                                 dprintf(moldyn->mfd,
669                                         "%.15f %.45f\n",moldyn->time,
670                                         v3_norm(&p));
671                         }
672                 }
673                 if(s) {
674                         if(!(i%s)) {
675                                 snprintf(fb,128,"%s-%f-%.15f.save",moldyn->sfb,
676                                          moldyn->t,i*moldyn->tau);
677                                 fd=open(fb,O_WRONLY|O_TRUNC|O_CREAT);
678                                 if(fd<0) perror("[moldyn] save fd open");
679                                 else {
680                                         write(fd,moldyn,sizeof(t_moldyn));
681                                         write(fd,moldyn->atom,
682                                               moldyn->count*sizeof(t_atom));
683                                 }
684                                 close(fd);
685                         }       
686                 }
687                 if(v) {
688                         if(!(i%v)) {
689                                 visual_atoms(&(moldyn->vis),moldyn->time,
690                                              moldyn->atom,moldyn->count);
691                                 printf("\rsched: %d, steps: %d",sched,i);
692                                 fflush(stdout);
693                         }
694                 }
695
696         }
697
698                 /* check for hooks */
699                 if(schedule->hook)
700                         schedule->hook(moldyn,schedule->hook_params);
701
702         }
703
704         return 0;
705 }
706
707 /* velocity verlet */
708
709 int velocity_verlet(t_moldyn *moldyn) {
710
711         int i,count;
712         double tau,tau_square;
713         t_3dvec delta;
714         t_atom *atom;
715
716         atom=moldyn->atom;
717         count=moldyn->count;
718         tau=moldyn->tau;
719         tau_square=moldyn->tau_square;
720
721         for(i=0;i<count;i++) {
722                 /* new positions */
723                 v3_scale(&delta,&(atom[i].v),tau);
724                 v3_add(&(atom[i].r),&(atom[i].r),&delta);
725                 v3_scale(&delta,&(atom[i].f),0.5*tau_square/atom[i].mass);
726                 v3_add(&(atom[i].r),&(atom[i].r),&delta);
727                 check_per_bound(moldyn,&(atom[i].r));
728
729                 /* velocities */
730                 v3_scale(&delta,&(atom[i].f),0.5*tau/atom[i].mass);
731                 v3_add(&(atom[i].v),&(atom[i].v),&delta);
732         }
733
734         /* neighbour list update */
735         link_cell_update(moldyn);
736
737         /* forces depending on chosen potential */
738         potential_force_calc(moldyn);
739         //moldyn->potential_force_function(moldyn);
740
741         for(i=0;i<count;i++) {
742                 /* again velocities */
743                 v3_scale(&delta,&(atom[i].f),0.5*tau/atom[i].mass);
744                 v3_add(&(atom[i].v),&(atom[i].v),&delta);
745         }
746
747         return 0;
748 }
749
750
751 /*
752  *
753  * potentials & corresponding forces
754  * 
755  */
756
757 /* generic potential and force calculation */
758
759 int potential_force_calc(t_moldyn *moldyn) {
760
761         int i,j,k,count;
762         t_atom *atom,*btom,*ktom;
763         t_linkcell *lc;
764         t_list neighbour[27],neighbourk[27];
765         t_list *this,*thisk;
766         u8 bc,bck;
767         int countn,dnlc;
768
769         count=moldyn->count;
770         atom=moldyn->atom;
771         lc=&(moldyn->lc);
772
773         /* reset energy */
774         moldyn->energy=0.0;
775
776         for(i=0;i<count;i++) {
777
778                 /* reset force */
779                 v3_zero(&(atom[i].f));
780
781                 /* single particle potential/force */
782                 if(atom[i].attr&ATOM_ATTR_1BP)
783                         moldyn->func1b(moldyn,&(atom[i]));
784
785                 /* 2 body pair potential/force */
786                 if(atom[i].attr&(ATOM_ATTR_2BP|ATOM_ATTR_3BP)) {
787         
788                         link_cell_neighbour_index(moldyn,
789                                 (atom[i].r.x+moldyn->dim.x/2)/lc->x,
790                                 (atom[i].r.y+moldyn->dim.y/2)/lc->y,
791                                 (atom[i].r.z+moldyn->dim.z/2)/lc->z,
792                                 neighbour);
793
794                         countn=lc->countn;
795                         dnlc=lc->dnlc;
796
797                         for(j=0;j<countn;j++) {
798
799                                 this=&(neighbour[j]);
800                                 list_reset(this);
801
802                                 if(this->start==NULL)
803                                         continue;
804
805                                 bc=(j<dnlc)?0:1;
806
807                                 do {
808                                         btom=this->current->data;
809
810                                         if(btom==&(atom[i]))
811                                                 continue;
812
813                                         if((btom->attr&ATOM_ATTR_2BP)&
814                                            (atom[i].attr&ATOM_ATTR_2BP))
815                                                 moldyn->func2b(moldyn,
816                                                                &(atom[i]),
817                                                                btom,
818                                                                bc);
819
820                                         /* 3 body potential/force */
821
822                                         if(!(atom[i].attr&ATOM_ATTR_3BP)||
823                                            !(btom->attr&ATOM_ATTR_3BP))
824                                                 continue;
825
826                                         link_cell_neighbour_index(moldyn,
827                                            (btom->r.x+moldyn->dim.x/2)/lc->x,
828                                            (btom->r.y+moldyn->dim.y/2)/lc->y,
829                                            (btom->r.z+moldyn->dim.z/2)/lc->z,
830                                            neighbourk);
831
832                                         for(k=0;k<lc->countn;k++) {
833
834                                                 thisk=&(neighbourk[k]);
835                                                 list_reset(thisk);
836                                         
837                                                 if(thisk->start==NULL)
838                                                         continue;
839
840                                                 bck=(k<lc->dnlc)?0:1;
841
842                                                 do {
843
844                         ktom=thisk->current->data;
845
846                         if(!(ktom->attr&ATOM_ATTR_3BP))
847                                 continue;
848
849                         if(ktom==btom)
850                                 continue;
851
852                         if(ktom==&(atom[i]))
853                                 continue;
854
855                         moldyn->func3b(moldyn,&(atom[i]),btom,ktom,bck);
856
857                                                 } while(list_next(thisk)!=\
858                                                         L_NO_NEXT_ELEMENT);
859
860                                         }
861                                         
862                                 } while(list_next(this)!=L_NO_NEXT_ELEMENT);
863                         }
864                 }
865         }
866
867         return 0;
868 }
869
870 /*
871  * periodic boundayr checking
872  */
873
874 int check_per_bound(t_moldyn *moldyn,t_3dvec *a) {
875         
876         double x,y,z;
877         t_3dvec *dim;
878
879         dim=&(moldyn->dim);
880
881         x=0.5*dim->x;
882         y=0.5*dim->y;
883         z=0.5*dim->z;
884
885         if(moldyn->status&MOLDYN_STAT_PBX) {
886                 if(a->x>=x) a->x-=dim->x;
887                 else if(-a->x>x) a->x+=dim->x;
888         }
889         if(moldyn->status&MOLDYN_STAT_PBY) {
890                 if(a->y>=y) a->y-=dim->y;
891                 else if(-a->y>y) a->y+=dim->y;
892         }
893         if(moldyn->status&MOLDYN_STAT_PBZ) {
894                 if(a->z>=z) a->z-=dim->z;
895                 else if(-a->z>z) a->z+=dim->z;
896         }
897
898         return 0;
899 }
900         
901
902 /*
903  * example potentials
904  */
905
906 /* harmonic oscillator potential and force */
907
908 int harmonic_oscillator(t_moldyn *moldyn,t_atom *ai,t_atom *aj,u8 bc) {
909
910         t_ho_params *params;
911         t_3dvec force,distance;
912         double d;
913         double sc,equi_dist;
914
915         params=moldyn->pot2b_params;
916         sc=params->spring_constant;
917         equi_dist=params->equilibrium_distance;
918
919         v3_sub(&distance,&(ai->r),&(aj->r));
920         
921         if(bc) check_per_bound(moldyn,&distance);
922         d=v3_norm(&distance);
923         if(d<=moldyn->cutoff) {
924                 /* energy is 1/2 (d-d0)^2, but we will add this twice ... */
925                 moldyn->energy+=(0.25*sc*(d-equi_dist)*(d-equi_dist));
926                 v3_scale(&force,&distance,-sc*(1.0-(equi_dist/d)));
927                 v3_add(&(ai->f),&(ai->f),&force);
928         }
929
930         return 0;
931 }
932
933 /* lennard jones potential & force for one sort of atoms */
934  
935 int lennard_jones(t_moldyn *moldyn,t_atom *ai,t_atom *aj,u8 bc) {
936
937         t_lj_params *params;
938         t_3dvec force,distance;
939         double d,h1,h2;
940         double eps,sig6,sig12;
941
942         params=moldyn->pot2b_params;
943         eps=params->epsilon4;
944         sig6=params->sigma6;
945         sig12=params->sigma12;
946
947         v3_sub(&distance,&(ai->r),&(aj->r));
948         if(bc) check_per_bound(moldyn,&distance);
949         d=v3_absolute_square(&distance);        /* 1/r^2 */
950         if(d<=moldyn->cutoff_square) {
951                 d=1.0/d;                        /* 1/r^2 */
952                 h2=d*d;                         /* 1/r^4 */
953                 h2*=d;                          /* 1/r^6 */
954                 h1=h2*h2;                       /* 1/r^12 */
955                 /* energy is eps*..., but we will add this twice ... */
956                 moldyn->energy+=0.5*eps*(sig12*h1-sig6*h2);
957                 h2*=d;                          /* 1/r^8 */
958                 h1*=d;                          /* 1/r^14 */
959                 h2*=6*sig6;
960                 h1*=12*sig12;
961                 d=+h1-h2;
962                 d*=eps;
963                 v3_scale(&force,&distance,d);
964                 v3_add(&(ai->f),&(ai->f),&force);
965         }
966
967         return 0;
968 }
969
970 /*
971  * tersoff potential & force for 2 sorts of atoms
972  */
973
974 /* create mixed terms from parameters and set them */
975 int tersoff_mult_complete_params(t_tersoff_mult_params *p) {
976
977         printf("[moldyn] tersoff parameter completion\n");
978         p->Smixed=sqrt(p->S[0]*p->S[1]);
979         p->Rmixed=sqrt(p->R[0]*p->R[1]);
980         p->Amixed=sqrt(p->A[0]*p->A[1]);
981         p->Bmixed=sqrt(p->B[0]*p->B[1]);
982         p->lambda_m=0.5*(p->lambda[0]+p->lambda[1]);
983         p->mu_m=0.5*(p->mu[0]+p->mu[1]);
984
985         return 0;
986 }
987
988 /* tersoff 1 body part */
989 int tersoff_mult_1bp(t_moldyn *moldyn,t_atom *ai) {
990
991         int num;
992         t_tersoff_mult_params *params;
993         t_tersoff_exchange *exchange;
994         
995         num=ai->bnum;
996         params=moldyn->pot1b_params;
997         exchange=&(params->exchange);
998
999         /*
1000          * simple: point constant parameters only depending on atom i to
1001          *         their right values
1002          */
1003
1004         exchange->beta=&(params->beta[num]);
1005         exchange->n=&(params->n[num]);
1006         exchange->c=&(params->c[num]);
1007         exchange->d=&(params->d[num]);
1008         exchange->h=&(params->h[num]);
1009
1010         exchange->betan=pow(*(exchange->beta),*(exchange->n));
1011         exchange->c2=params->c[num]*params->c[num];
1012         exchange->d2=params->d[num]*params->d[num];
1013         exchange->c2d2=exchange->c2/exchange->d2;
1014
1015         return 0;
1016 }
1017         
1018 /* tersoff 2 body part */
1019 int tersoff_mult_2bp(t_moldyn *moldyn,t_atom *ai,t_atom *aj,u8 bc) {
1020
1021         t_tersoff_mult_params *params;
1022         t_tersoff_exchange *exchange;
1023         t_3dvec dist_ij,force;
1024         double d_ij;
1025         double A,B,R,S,lambda,mu;
1026         double f_r,df_r;
1027         double f_c,df_c;
1028         int num;
1029         double s_r;
1030         double arg;
1031         double scale;
1032
1033         params=moldyn->pot2b_params;
1034         num=ai->bnum;
1035         exchange=&(params->exchange);
1036
1037         exchange->run3bp=0;
1038         
1039         /*
1040          * we need: f_c, df_c, f_r, df_r
1041          *
1042          * therefore we need: R, S, A, lambda
1043          */
1044
1045         v3_sub(&dist_ij,&(ai->r),&(aj->r));
1046
1047         if(bc) check_per_bound(moldyn,&dist_ij);
1048
1049         /* save for use in 3bp */ /* REALLY ?!?!?! */
1050         exchange->dist_ij=dist_ij;
1051
1052         /* constants */
1053         if(num==aj->bnum) {
1054                 S=params->S[num];
1055                 R=params->R[num];
1056                 A=params->A[num];
1057                 lambda=params->lambda[num];
1058                 /* more constants depending of atoms i and j, needed in 3bp */
1059                 params->exchange.B=&(params->B[num]);
1060                 params->exchange.mu=&(params->mu[num]);
1061                 mu=params->mu[num];
1062                 params->exchange.chi=1.0;
1063         }
1064         else {
1065                 S=params->Smixed;
1066                 R=params->Rmixed;
1067                 A=params->Amixed;
1068                 lambda=params->lambda_m;
1069                 /* more constants depending of atoms i and j, needed in 3bp */
1070                 params->exchange.B=&(params->Bmixed);
1071                 params->exchange.mu=&(params->mu_m);
1072                 mu=params->mu_m;
1073                 params->exchange.chi=params->chi;
1074         }
1075
1076         d_ij=v3_norm(&dist_ij);
1077
1078         /* save for use in 3bp */
1079         exchange->d_ij=d_ij;
1080
1081         if(d_ij>S)
1082                 return 0;
1083
1084         f_r=A*exp(-lambda*d_ij);
1085         df_r=-lambda*f_r/d_ij;
1086
1087         /* f_a, df_a calc + save for 3bp use */
1088         exchange->f_a=-B*exp(-mu*d_ij);
1089         exchange->df_a=-mu*exchange->f_a/d_ij;
1090
1091         if(d_ij<R) {
1092                 /* f_c = 1, df_c = 0 */
1093                 f_c=1.0;
1094                 df_c=0.0;
1095                 v3_scale(&force,&dist_ij,df_r);
1096         }
1097         else {
1098                 s_r=S-R;
1099                 arg=M_PI*(d_ij-R)/s_r;
1100                 f_c=0.5+0.5*cos(arg);
1101                 df_c=-0.5*sin(arg)*(M_PI/(s_r*d_ij));
1102                 scale=df_c*f_r+df_r*f_c;
1103                 v3_scale(&force,&dist_ij,scale);
1104         }
1105
1106         /* add forces */
1107         v3_add(&(ai->f),&(ai->f),&force);
1108         /* energy is 0.5 f_r f_c, but we will sum it up twice ... */
1109         moldyn->energy+=(0.25*f_r*f_c);
1110
1111         /* save for use in 3bp */
1112         exchange->f_c=f_c;
1113         exchange->df_c=df_c;
1114
1115         /* enable the run of 3bp function */
1116         exchange->run3bp=1;
1117
1118         return 0;
1119 }
1120
1121 /* tersoff 3 body part */
1122
1123 int tersoff_mult_3bp(t_moldyn *moldyn,t_atom *ai,t_atom *aj,t_atom *ak,u8 bc) {
1124
1125         t_tersoff_mult_params *params;
1126         t_tersoff_exchange *exchange;
1127         t_3dvec dist_ij,dist_ik,dist_jk;
1128         t_3dvec temp,force;
1129         double R,S,s_r;
1130         double d_ij,d_ij2,d_ik,d_jk;
1131         double f_c,df_c,b_ij,f_a,df_a;
1132         double f_c_ik,df_c_ik,arg;
1133         double scale;
1134         double chi;
1135         double n,c,d,h,beta,betan;
1136         double c2,d2,c2d2;
1137         double numer,denom;
1138         double theta,cos_theta,sin_theta;
1139         double d_theta,d_theta1,d_theta2;
1140         double h_cos,h_cos2,d2_h_cos2;
1141         double frac1,bracket1,bracket2,bracket2_n_1,bracket2_n;
1142         double bracket3,bracket3_pow_1,bracket3_pow;
1143         int num;
1144
1145         params=moldyn->pot3b_params;
1146         num=ai->bnum;
1147         exchange=&(params->exchange);
1148
1149         if(!(exchange->run3bp))
1150                 return 0;
1151
1152         /*
1153          * we need: f_c, d_fc, b_ij, db_ij, f_a, df_a
1154          *
1155          * we got f_c, df_c, f_a, df_a from 2bp calculation
1156          */
1157
1158         d_ij=exchange->d_ij;
1159         d_ij2=exchange->d_ij2;
1160
1161         f_a=params->exchange.f_a;
1162         df_a=params->exchange.df_a;
1163         
1164         /* d_ij is <= S, as we didn't return so far! */
1165
1166         /*
1167          * calc of b_ij (scalar) and db_ij (vector)
1168          *
1169          * - for b_ij: chi, beta, f_c_ik, w(=1), c, d, h, n, cos_theta
1170          *
1171          * - for db_ij: d_theta, sin_theta, cos_theta, f_c_ik, df_c_ik,
1172          *              w_ik,
1173          *
1174          */
1175
1176         
1177         v3_sub(&dist_ik,&(ai->r),&(ak->r));
1178         if(bc) check_per_bound(moldyn,&dist_ik);
1179         d_ik=v3_norm(&dist_ik);
1180
1181         /* constants for f_c_ik calc */
1182         if(num==ak->bnum) {
1183                 R=params->R[num];
1184                 S=params->S[num];
1185         }
1186         else {
1187                 R=params->Rmixed;
1188                 S=params->Smixed;
1189         }
1190
1191         /* calc of f_c_ik */
1192         if(d_ik>S)
1193                 return 0;
1194
1195         if(d_ik<R) {
1196                 /* f_c_ik = 1, df_c_ik = 0 */
1197                 f_c_ik=1.0;
1198                 df_c_ik=0.0;
1199         }
1200         else {
1201                 s_r=S-R;
1202                 arg=M_PI*(d_ik-R)/s_r;
1203                 f_c_ik=0.5+0.5*cos(arg);
1204                 df_c_ik=-0.5*sin(arg)*(M_PI/(s_r*d_ik));
1205         }
1206         
1207         v3_sub(&dist_jk,&(aj->r),&(ak->r));
1208         if(bc) check_per_bound(moldyn,&dist_jk);
1209         d_jk=v3_norm(&dist_jk);
1210
1211         beta=*(exchange->beta);
1212         betan=exchange->betan;
1213         n=*(exchange->n);
1214         c=*(exchange->c);
1215         d=*(exchange->d);
1216         h=*(exchange->h);
1217         c2=exchange->c2;
1218         d2=exchange->d2;
1219         c2d2=exchange->c2d2;
1220
1221         numer=d_ij2+d_ik*d_ik-d_jk*d_jk;
1222         denom=2*d_ij*d_ik;
1223         cos_theta=numer/denom;
1224         sin_theta=sqrt(1.0-(cos_theta*cos_theta));
1225         theta=acos(cos_theta);
1226         d_theta=(-1.0/sqrt(1.0-cos_theta*cos_theta))/(denom*denom);
1227         d_theta1=2*denom-numer*2*d_ik/d_ij;
1228         d_theta2=2*denom-numer*2*d_ij/d_ik;
1229         d_theta1*=d_theta;
1230         d_theta2*=d_theta;
1231
1232         h_cos=(h-cos_theta);
1233         h_cos2=h_cos*h_cos;
1234         d2_h_cos2=d2-h_cos2;
1235
1236         /* some usefull expressions */
1237         frac1=c2/(d2-h_cos2);
1238         bracket1=1+c2d2-frac1;
1239         bracket2=f_c_ik*bracket1;
1240         bracket2_n_1=pow(bracket2,n-1.0);
1241         bracket2_n=bracket2_n_1*bracket2;
1242         bracket3=1+betan*bracket2_n;
1243         bracket3_pow_1=pow(bracket3,(-1.0/(2.0*n))-1.0);
1244         bracket3_pow=bracket3_pow_1*bracket3;
1245
1246         /* now go on with calc of b_ij and derivation of b_ij */
1247         b_ij=chi*bracket3_pow;
1248
1249         /* derivation of theta */
1250         v3_scale(&force,&dist_ij,d_theta1);
1251         v3_scale(&temp,&dist_ik,d_theta2);
1252         v3_add(&force,&force,&temp);
1253
1254         /* part 1 of derivation of b_ij */
1255         v3_scale(&force,&force,sin_theta*2*h_cos*f_c_ik*frac1);
1256
1257         /* part 2 of derivation of b_ij */
1258         v3_scale(&temp,&dist_ik,df_c_ik*bracket1);
1259
1260         /* sum up and scale ... */
1261         v3_add(&temp,&temp,&force);
1262         scale=bracket2_n_1*n*betan*(1+betan*bracket3_pow_1)*chi*(1.0/(2.0*n));
1263         v3_scale(&temp,&temp,scale);
1264
1265         /* now construct an energy and a force out of that */
1266         v3_scale(&temp,&temp,f_a);
1267         v3_scale(&force,&dist_ij,df_a*b_ij);
1268         v3_add(&temp,&temp,&force);
1269         v3_scale(&temp,&temp,f_c);
1270         v3_scale(&force,&dist_ij,df_c*b_ij*f_a);
1271         v3_add(&force,&force,&temp);
1272
1273         /* add forces */
1274         v3_add(&(ai->f),&(ai->f),&force);
1275         /* energy is 0.5 f_r f_c, but we will sum it up twice ... */
1276         moldyn->energy+=(0.25*f_a*b_ij*f_c);
1277                                 
1278         return 0;
1279 }
1280