compiler probs ?!? bc check ... (working with gcc-3.4)
[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_ref) {
75
76         moldyn->t_ref=t_ref;
77
78         return 0;
79 }
80
81 int set_pt_scale(t_moldyn *moldyn,u8 ptype,double ptc,u8 ttype,double ttc) {
82
83         moldyn->pt_scale=(ptype|ttype);
84         moldyn->t_tc=ttc;
85         moldyn->p_tc=ptc;
86
87         return 0;
88 }
89
90 int set_dim(t_moldyn *moldyn,double x,double y,double z,u8 visualize) {
91
92         moldyn->dim.x=x;
93         moldyn->dim.y=y;
94         moldyn->dim.z=z;
95
96         if(visualize) {
97                 moldyn->vis.dim.x=x;
98                 moldyn->vis.dim.y=y;
99                 moldyn->vis.dim.z=z;
100         }
101
102         return 0;
103 }
104
105 int set_nn_dist(t_moldyn *moldyn,double dist) {
106
107         moldyn->nnd=dist;
108
109         return 0;
110 }
111
112 int set_pbc(t_moldyn *moldyn,u8 x,u8 y,u8 z) {
113
114         if(x)
115                 moldyn->status|=MOLDYN_STAT_PBX;
116
117         if(y)
118                 moldyn->status|=MOLDYN_STAT_PBY;
119
120         if(z)
121                 moldyn->status|=MOLDYN_STAT_PBZ;
122
123         return 0;
124 }
125
126 int set_potential1b(t_moldyn *moldyn,pf_func1b func,void *params) {
127
128         moldyn->func1b=func;
129         moldyn->pot1b_params=params;
130
131         return 0;
132 }
133
134 int set_potential2b(t_moldyn *moldyn,pf_func2b func,void *params) {
135
136         moldyn->func2b=func;
137         moldyn->pot2b_params=params;
138
139         return 0;
140 }
141
142 int set_potential2b_post(t_moldyn *moldyn,pf_func2b_post func,void *params) {
143
144         moldyn->func2b_post=func;
145         moldyn->pot2b_params=params;
146
147         return 0;
148 }
149
150 int set_potential3b(t_moldyn *moldyn,pf_func3b func,void *params) {
151
152         moldyn->func3b=func;
153         moldyn->pot3b_params=params;
154
155         return 0;
156 }
157
158 int moldyn_set_log(t_moldyn *moldyn,u8 type,char *fb,int timer) {
159
160         switch(type) {
161                 case LOG_TOTAL_ENERGY:
162                         moldyn->ewrite=timer;
163                         moldyn->efd=open(fb,O_WRONLY|O_CREAT|O_TRUNC);
164                         if(moldyn->efd<0) {
165                                 perror("[moldyn] efd open");
166                                 return moldyn->efd;
167                         }
168                         dprintf(moldyn->efd,"# total energy log file\n");
169                         break;
170                 case LOG_TOTAL_MOMENTUM:
171                         moldyn->mwrite=timer;
172                         moldyn->mfd=open(fb,O_WRONLY|O_CREAT|O_TRUNC);
173                         if(moldyn->mfd<0) {
174                                 perror("[moldyn] mfd open");
175                                 return moldyn->mfd;
176                         }
177                         dprintf(moldyn->efd,"# total momentum log file\n");
178                         break;
179                 case SAVE_STEP:
180                         moldyn->swrite=timer;
181                         strncpy(moldyn->sfb,fb,63);
182                         break;
183                 case VISUAL_STEP:
184                         moldyn->vwrite=timer;
185                         strncpy(moldyn->vfb,fb,63);
186                         visual_init(&(moldyn->vis),fb);
187                         break;
188                 default:
189                         printf("unknown log mechanism: %02x\n",type);
190                         return -1;
191         }
192
193         return 0;
194 }
195
196 int moldyn_log_shutdown(t_moldyn *moldyn) {
197
198         printf("[moldyn] log shutdown\n");
199         if(moldyn->efd) close(moldyn->efd);
200         if(moldyn->mfd) close(moldyn->mfd);
201         if(&(moldyn->vis)) visual_tini(&(moldyn->vis));
202
203         return 0;
204 }
205
206 int create_lattice(t_moldyn *moldyn,u8 type,double lc,int element,double mass,
207                    u8 attr,u8 bnum,int a,int b,int c) {
208
209         int count;
210         int ret;
211         t_3dvec origin;
212
213         count=a*b*c;
214
215         if(type==FCC) count*=4;
216
217         if(type==DIAMOND) count*=8;
218
219         moldyn->atom=malloc(count*sizeof(t_atom));
220         if(moldyn->atom==NULL) {
221                 perror("malloc (atoms)");
222                 return -1;
223         }
224
225         v3_zero(&origin);
226
227         switch(type) {
228                 case FCC:
229                         ret=fcc_init(a,b,c,lc,moldyn->atom,&origin);
230                         break;
231                 case DIAMOND:
232                         ret=diamond_init(a,b,c,lc,moldyn->atom,&origin);
233                         break;
234                 default:
235                         printf("unknown lattice type (%02x)\n",type);
236                         return -1;
237         }
238
239         /* debug */
240         if(ret!=count) {
241                 printf("ok, there is something wrong ...\n");
242                 printf("calculated -> %d atoms\n",count);
243                 printf("created -> %d atoms\n",ret);
244                 return -1;
245         }
246
247         moldyn->count=count;
248         printf("[moldyn] created lattice with %d atoms\n",count);
249
250         while(count) {
251                 count-=1;
252                 moldyn->atom[count].element=element;
253                 moldyn->atom[count].mass=mass;
254                 moldyn->atom[count].attr=attr;
255                 moldyn->atom[count].bnum=bnum;
256                 check_per_bound(moldyn,&(moldyn->atom[count].r));
257         }
258
259
260         return ret;
261 }
262
263 int add_atom(t_moldyn *moldyn,int element,double mass,u8 bnum,u8 attr,
264              t_3dvec *r,t_3dvec *v) {
265
266         t_atom *atom;
267         void *ptr;
268         int count;
269         
270         atom=moldyn->atom;
271         count=++(moldyn->count);
272
273         ptr=realloc(atom,count*sizeof(t_atom));
274         if(!ptr) {
275                 perror("[moldyn] realloc (add atom)");
276                 return -1;
277         }
278         moldyn->atom=ptr;
279
280         atom=moldyn->atom;
281         atom[count-1].r=*r;
282         atom[count-1].v=*v;
283         atom[count-1].element=element;
284         atom[count-1].mass=mass;
285         atom[count-1].bnum=bnum;
286         atom[count-1].attr=attr;
287
288         return 0;
289 }
290
291 int destroy_atoms(t_moldyn *moldyn) {
292
293         if(moldyn->atom) free(moldyn->atom);
294
295         return 0;
296 }
297
298 int thermal_init(t_moldyn *moldyn,u8 equi_init) {
299
300         /*
301          * - gaussian distribution of velocities
302          * - zero total momentum
303          * - velocity scaling (E = 3/2 N k T), E: kinetic energy
304          */
305
306         int i;
307         double v,sigma;
308         t_3dvec p_total,delta;
309         t_atom *atom;
310         t_random *random;
311
312         atom=moldyn->atom;
313         random=&(moldyn->random);
314
315         /* gaussian distribution of velocities */
316         v3_zero(&p_total);
317         for(i=0;i<moldyn->count;i++) {
318                 sigma=sqrt(2.0*K_BOLTZMANN*moldyn->t_ref/atom[i].mass);
319                 /* x direction */
320                 v=sigma*rand_get_gauss(random);
321                 atom[i].v.x=v;
322                 p_total.x+=atom[i].mass*v;
323                 /* y direction */
324                 v=sigma*rand_get_gauss(random);
325                 atom[i].v.y=v;
326                 p_total.y+=atom[i].mass*v;
327                 /* z direction */
328                 v=sigma*rand_get_gauss(random);
329                 atom[i].v.z=v;
330                 p_total.z+=atom[i].mass*v;
331         }
332
333         /* zero total momentum */
334         v3_scale(&p_total,&p_total,1.0/moldyn->count);
335         for(i=0;i<moldyn->count;i++) {
336                 v3_scale(&delta,&p_total,1.0/atom[i].mass);
337                 v3_sub(&(atom[i].v),&(atom[i].v),&delta);
338         }
339
340         /* velocity scaling */
341         scale_velocity(moldyn,equi_init);
342
343         return 0;
344 }
345
346 int scale_velocity(t_moldyn *moldyn,u8 equi_init) {
347
348         int i;
349         double e,scale;
350         t_atom *atom;
351         int count;
352
353         atom=moldyn->atom;
354
355         /*
356          * - velocity scaling (E = 3/2 N k T), E: kinetic energy
357          */
358
359         /* get kinetic energy / temperature & count involved atoms */
360         e=0.0;
361         count=0;
362         for(i=0;i<moldyn->count;i++) {
363                 if((equi_init&TRUE)||(atom[i].attr&ATOM_ATTR_HB)) {
364                         e+=0.5*atom[i].mass*v3_absolute_square(&(atom[i].v));
365                         count+=1;
366                 }
367         }
368         if(count!=0) moldyn->t=(2.0*e)/(3.0*count*K_BOLTZMANN);
369         else return 0;  /* no atoms involved in scaling! */
370         
371         /* (temporary) hack for e,t = 0 */
372         if(e==0.0) {
373         moldyn->t=0.0;
374                 if(moldyn->t_ref!=0.0)
375                         thermal_init(moldyn,equi_init);
376                 else
377                         return 0; /* no scaling needed */
378         }
379
380
381         /* get scaling factor */
382         scale=moldyn->t_ref/moldyn->t;
383         if(equi_init&TRUE)
384                 scale*=2.0;
385         else
386                 if(moldyn->pt_scale&T_SCALE_BERENDSEN)
387                         scale=1.0+moldyn->tau*(scale-1.0)/moldyn->t_tc;
388         scale=sqrt(scale);
389
390         /* velocity scaling */
391         for(i=0;i<moldyn->count;i++)
392                 if((equi_init&TRUE)||(atom[i].attr&ATOM_ATTR_HB))
393                         v3_scale(&(atom[i].v),&(atom[i].v),scale);
394
395         return 0;
396 }
397
398 double get_e_kin(t_moldyn *moldyn) {
399
400         int i;
401         t_atom *atom;
402
403         atom=moldyn->atom;
404         moldyn->ekin=0.0;
405
406         for(i=0;i<moldyn->count;i++)
407                 moldyn->ekin+=0.5*atom[i].mass*v3_absolute_square(&(atom[i].v));
408
409         return moldyn->ekin;
410 }
411
412 double get_e_pot(t_moldyn *moldyn) {
413
414         return moldyn->energy;
415 }
416
417 double update_e_kin(t_moldyn *moldyn) {
418
419         return(get_e_kin(moldyn));
420 }
421
422 double get_total_energy(t_moldyn *moldyn) {
423
424         return(moldyn->ekin+moldyn->energy);
425 }
426
427 t_3dvec get_total_p(t_moldyn *moldyn) {
428
429         t_3dvec p,p_total;
430         int i;
431         t_atom *atom;
432
433         atom=moldyn->atom;
434
435         v3_zero(&p_total);
436         for(i=0;i<moldyn->count;i++) {
437                 v3_scale(&p,&(atom[i].v),atom[i].mass);
438                 v3_add(&p_total,&p_total,&p);
439         }
440
441         return p_total;
442 }
443
444 double estimate_time_step(t_moldyn *moldyn,double nn_dist) {
445
446         double tau;
447
448         /* nn_dist is the nearest neighbour distance */
449
450         if(moldyn->t==5.0) {
451                 printf("[moldyn] i do not estimate timesteps below %f K!\n",
452                        MOLDYN_CRITICAL_EST_TEMP);
453                 return 23.42;
454         }
455
456         tau=(0.05*nn_dist*moldyn->atom[0].mass)/sqrt(3.0*K_BOLTZMANN*moldyn->t);
457
458         return tau;     
459 }
460
461 /*
462  * numerical tricks
463  */
464
465 /* linked list / cell method */
466
467 int link_cell_init(t_moldyn *moldyn) {
468
469         t_linkcell *lc;
470         int i;
471         int fd;
472
473         fd=open("/dev/null",O_WRONLY);
474
475         lc=&(moldyn->lc);
476
477         /* partitioning the md cell */
478         lc->nx=moldyn->dim.x/moldyn->cutoff;
479         lc->x=moldyn->dim.x/lc->nx;
480         lc->ny=moldyn->dim.y/moldyn->cutoff;
481         lc->y=moldyn->dim.y/lc->ny;
482         lc->nz=moldyn->dim.z/moldyn->cutoff;
483         lc->z=moldyn->dim.z/lc->nz;
484
485         lc->cells=lc->nx*lc->ny*lc->nz;
486         lc->subcell=malloc(lc->cells*sizeof(t_list));
487
488         printf("[moldyn] initializing linked cells (%d)\n",lc->cells);
489
490         for(i=0;i<lc->cells;i++)
491                 //list_init(&(lc->subcell[i]),1);
492                 list_init(&(lc->subcell[i]),fd);
493
494         link_cell_update(moldyn);
495         
496         return 0;
497 }
498
499 int link_cell_update(t_moldyn *moldyn) {
500
501         int count,i,j,k;
502         int nx,ny,nz;
503         t_atom *atom;
504         t_linkcell *lc;
505
506         atom=moldyn->atom;
507         lc=&(moldyn->lc);
508
509         nx=lc->nx;
510         ny=lc->ny;
511         nz=lc->nz;
512
513         for(i=0;i<lc->cells;i++)
514                 list_destroy(&(moldyn->lc.subcell[i]));
515         
516         for(count=0;count<moldyn->count;count++) {
517                 i=(atom[count].r.x+(moldyn->dim.x/2))/lc->x;
518                 j=(atom[count].r.y+(moldyn->dim.y/2))/lc->y;
519                 k=(atom[count].r.z+(moldyn->dim.z/2))/lc->z;
520                 list_add_immediate_ptr(&(moldyn->lc.subcell[i+j*nx+k*nx*ny]),
521                                        &(atom[count]));
522         }
523
524         return 0;
525 }
526
527 int link_cell_neighbour_index(t_moldyn *moldyn,int i,int j,int k,t_list *cell) {
528
529         t_linkcell *lc;
530         int a;
531         int count1,count2;
532         int ci,cj,ck;
533         int nx,ny,nz;
534         int x,y,z;
535         u8 bx,by,bz;
536
537         lc=&(moldyn->lc);
538         nx=lc->nx;
539         ny=lc->ny;
540         nz=lc->nz;
541         count1=1;
542         count2=27;
543         a=nx*ny;
544
545         cell[0]=lc->subcell[i+j*nx+k*a];
546         for(ci=-1;ci<=1;ci++) {
547                 bx=0;
548                 x=i+ci;
549                 if((x<0)||(x>=nx)) {
550                         x=(x+nx)%nx;
551                         bx=1;
552                 }
553                 for(cj=-1;cj<=1;cj++) {
554                         by=0;
555                         y=j+cj;
556                         if((y<0)||(y>=ny)) {
557                                 y=(y+ny)%ny;
558                                 by=1;
559                         }
560                         for(ck=-1;ck<=1;ck++) {
561                                 bz=0;
562                                 z=k+ck;
563                                 if((z<0)||(z>=nz)) {
564                                         z=(z+nz)%nz;
565                                         bz=1;
566                                 }
567                                 if(!(ci|cj|ck)) continue;
568                                 if(bx|by|bz) {
569                                         cell[--count2]=lc->subcell[x+y*nx+z*a];
570                                 }
571                                 else {
572                                         cell[count1++]=lc->subcell[x+y*nx+z*a];
573                                 }
574                         }
575                 }
576         }
577
578         lc->dnlc=count1;
579
580         return count1;
581 }
582
583 int link_cell_shutdown(t_moldyn *moldyn) {
584
585         int i;
586         t_linkcell *lc;
587
588         lc=&(moldyn->lc);
589
590         for(i=0;i<lc->nx*lc->ny*lc->nz;i++)
591                 list_shutdown(&(moldyn->lc.subcell[i]));
592
593         return 0;
594 }
595
596 int moldyn_add_schedule(t_moldyn *moldyn,int runs,double tau) {
597
598         int count;
599         void *ptr;
600         t_moldyn_schedule *schedule;
601
602         schedule=&(moldyn->schedule);
603         count=++(schedule->content_count);
604
605         ptr=realloc(moldyn->schedule.runs,count*sizeof(int));
606         if(!ptr) {
607                 perror("[moldyn] realloc (runs)");
608                 return -1;
609         }
610         moldyn->schedule.runs=ptr;
611         moldyn->schedule.runs[count-1]=runs;
612
613         ptr=realloc(schedule->tau,count*sizeof(double));
614         if(!ptr) {
615                 perror("[moldyn] realloc (tau)");
616                 return -1;
617         }
618         moldyn->schedule.tau=ptr;
619         moldyn->schedule.tau[count-1]=tau;
620
621         return 0;
622 }
623
624 int moldyn_set_schedule_hook(t_moldyn *moldyn,void *hook,void *hook_params) {
625
626         moldyn->schedule.hook=hook;
627         moldyn->schedule.hook_params=hook_params;
628         
629         return 0;
630 }
631
632 /*
633  *
634  * 'integration of newtons equation' - algorithms
635  *
636  */
637
638 /* start the integration */
639
640 int moldyn_integrate(t_moldyn *moldyn) {
641
642         int i,sched;
643         unsigned int e,m,s,v;
644         t_3dvec p;
645         t_moldyn_schedule *schedule;
646         t_atom *atom;
647         int fd;
648         char fb[128];
649         double ds;
650
651         schedule=&(moldyn->schedule);
652         atom=moldyn->atom;
653
654         /* initialize linked cell method */
655         link_cell_init(moldyn);
656
657         /* logging & visualization */
658         e=moldyn->ewrite;
659         m=moldyn->mwrite;
660         s=moldyn->swrite;
661         v=moldyn->vwrite;
662
663         /* sqaure of some variables */
664         moldyn->tau_square=moldyn->tau*moldyn->tau;
665         moldyn->cutoff_square=moldyn->cutoff*moldyn->cutoff;
666
667         /* calculate initial forces */
668         potential_force_calc(moldyn);
669
670         /* some stupid checks before we actually start calculating bullshit */
671         if(moldyn->cutoff>0.5*moldyn->dim.x)
672                 printf("[moldyn] warning: cutoff > 0.5 x dim.x\n");
673         if(moldyn->cutoff>0.5*moldyn->dim.y)
674                 printf("[moldyn] warning: cutoff > 0.5 x dim.y\n");
675         if(moldyn->cutoff>0.5*moldyn->dim.z)
676                 printf("[moldyn] warning: cutoff > 0.5 x dim.z\n");
677         ds=0.5*atom[0].f.x*moldyn->tau_square/atom[0].mass;
678         if(ds>0.05*moldyn->nnd)
679                 printf("[moldyn] warning: forces too high / tau too small!\n");
680
681         /* zero absolute time */
682         moldyn->time=0.0;
683
684         /* debugging, ignore */
685         moldyn->debug=0;
686
687         /* executing the schedule */
688         for(sched=0;sched<moldyn->schedule.content_count;sched++) {
689
690                 /* setting amount of runs and finite time step size */
691                 moldyn->tau=schedule->tau[sched];
692                 moldyn->tau_square=moldyn->tau*moldyn->tau;
693                 moldyn->time_steps=schedule->runs[sched];
694
695         /* integration according to schedule */
696
697         for(i=0;i<moldyn->time_steps;i++) {
698
699                 /* integration step */
700                 moldyn->integrate(moldyn);
701
702                 /* p/t scaling */
703                 if(moldyn->pt_scale&(T_SCALE_BERENDSEN|T_SCALE_DIRECT))
704                         scale_velocity(moldyn,FALSE);
705
706                 /* increase absolute time */
707                 moldyn->time+=moldyn->tau;
708
709                 /* check for log & visualization */
710                 if(e) {
711                         if(!(i%e))
712                                 dprintf(moldyn->efd,
713                                         "%.15f %.45f %.45f %.45f\n",
714                                         moldyn->time,update_e_kin(moldyn),
715                                         moldyn->energy,
716                                         get_total_energy(moldyn));
717                 }
718                 if(m) {
719                         if(!(i%m)) {
720                                 p=get_total_p(moldyn);
721                                 dprintf(moldyn->mfd,
722                                         "%.15f %.45f\n",moldyn->time,
723                                         v3_norm(&p));
724                         }
725                 }
726                 if(s) {
727                         if(!(i%s)) {
728                                 snprintf(fb,128,"%s-%f-%.15f.save",moldyn->sfb,
729                                          moldyn->t,i*moldyn->tau);
730                                 fd=open(fb,O_WRONLY|O_TRUNC|O_CREAT);
731                                 if(fd<0) perror("[moldyn] save fd open");
732                                 else {
733                                         write(fd,moldyn,sizeof(t_moldyn));
734                                         write(fd,moldyn->atom,
735                                               moldyn->count*sizeof(t_atom));
736                                 }
737                                 close(fd);
738                         }       
739                 }
740                 if(v) {
741                         if(!(i%v)) {
742                                 visual_atoms(&(moldyn->vis),moldyn->time,
743                                              moldyn->atom,moldyn->count);
744                                 printf("\rsched: %d, steps: %d, debug: %d",
745                                        sched,i,moldyn->debug);
746                                 fflush(stdout);
747                         }
748                 }
749
750         }
751
752                 /* check for hooks */
753                 if(schedule->hook)
754                         schedule->hook(moldyn,schedule->hook_params);
755
756                 /* get a new info line */
757                 printf("\n");
758
759         }
760
761         return 0;
762 }
763
764 /* velocity verlet */
765
766 int velocity_verlet(t_moldyn *moldyn) {
767
768         int i,count;
769         double tau,tau_square;
770         t_3dvec delta;
771         t_atom *atom;
772
773         atom=moldyn->atom;
774         count=moldyn->count;
775         tau=moldyn->tau;
776         tau_square=moldyn->tau_square;
777
778         for(i=0;i<count;i++) {
779                 /* new positions */
780                 v3_scale(&delta,&(atom[i].v),tau);
781                 v3_add(&(atom[i].r),&(atom[i].r),&delta);
782                 v3_scale(&delta,&(atom[i].f),0.5*tau_square/atom[i].mass);
783                 v3_add(&(atom[i].r),&(atom[i].r),&delta);
784                 check_per_bound(moldyn,&(atom[i].r));
785
786                 /* velocities */
787                 v3_scale(&delta,&(atom[i].f),0.5*tau/atom[i].mass);
788                 v3_add(&(atom[i].v),&(atom[i].v),&delta);
789         }
790
791         /* neighbour list update */
792         link_cell_update(moldyn);
793
794         /* forces depending on chosen potential */
795         potential_force_calc(moldyn);
796
797         for(i=0;i<count;i++) {
798                 /* again velocities */
799                 v3_scale(&delta,&(atom[i].f),0.5*tau/atom[i].mass);
800                 v3_add(&(atom[i].v),&(atom[i].v),&delta);
801         }
802
803         return 0;
804 }
805
806
807 /*
808  *
809  * potentials & corresponding forces
810  * 
811  */
812
813 /* generic potential and force calculation */
814
815 int potential_force_calc(t_moldyn *moldyn) {
816
817         int i,j,k,count;
818         t_atom *itom,*jtom,*ktom;
819         t_linkcell *lc;
820         t_list neighbour_i[27];
821         t_list neighbour_i2[27];
822         //t_list neighbour_j[27];
823         t_list *this,*that;
824         u8 bc_ij,bc_ik;
825         int dnlc;
826
827         count=moldyn->count;
828         itom=moldyn->atom;
829         lc=&(moldyn->lc);
830
831         /* reset energy */
832         moldyn->energy=0.0;
833
834         /* get energy and force of every atom */
835         for(i=0;i<count;i++) {
836
837                 /* reset force */
838                 v3_zero(&(itom[i].f));
839
840                 /* single particle potential/force */
841                 if(itom[i].attr&ATOM_ATTR_1BP)
842                         moldyn->func1b(moldyn,&(itom[i]));
843
844                 /* 2 body pair potential/force */
845                 if(itom[i].attr&(ATOM_ATTR_2BP|ATOM_ATTR_3BP)) {
846         
847                         link_cell_neighbour_index(moldyn,
848                                 (itom[i].r.x+moldyn->dim.x/2)/lc->x,
849                                 (itom[i].r.y+moldyn->dim.y/2)/lc->y,
850                                 (itom[i].r.z+moldyn->dim.z/2)/lc->z,
851                                 neighbour_i);
852
853                         dnlc=lc->dnlc;
854
855                         for(j=0;j<27;j++) {
856
857                                 this=&(neighbour_i[j]);
858                                 list_reset(this);
859
860                                 if(this->start==NULL)
861                                         continue;
862
863                                 bc_ij=(j<dnlc)?0:1;
864
865                                 do {
866                                         jtom=this->current->data;
867
868                                         if(jtom==&(itom[i]))
869                                                 continue;
870
871                                         if((jtom->attr&ATOM_ATTR_2BP)&
872                                            (itom[i].attr&ATOM_ATTR_2BP))
873                                                 moldyn->func2b(moldyn,
874                                                                &(itom[i]),
875                                                                jtom,
876                                                                bc_ij);
877
878                                         /* 3 body potential/force */
879
880                                         if(!(itom[i].attr&ATOM_ATTR_3BP)||
881                                            !(jtom->attr&ATOM_ATTR_3BP))
882                                                 continue;
883
884                                         /* copy the neighbour lists */
885                                         memcpy(neighbour_i2,neighbour_i,
886                                                27*sizeof(t_list));
887
888                                         /* get neighbours of i */
889                                         for(k=0;k<27;k++) {
890
891                                                 that=&(neighbour_i2[k]);
892                                                 list_reset(that);
893                                         
894                                                 if(that->start==NULL)
895                                                         continue;
896
897                                                 bc_ik=(k<dnlc)?0:1;
898
899                                                 do {
900
901                         ktom=that->current->data;
902
903                         if(!(ktom->attr&ATOM_ATTR_3BP))
904                                 continue;
905
906                         if(ktom==jtom)
907                                 continue;
908
909                         if(ktom==&(itom[i]))
910                                 continue;
911
912                         moldyn->func3b(moldyn,&(itom[i]),jtom,ktom,bc_ik|bc_ij);
913
914                                                 } while(list_next(that)!=\
915                                                         L_NO_NEXT_ELEMENT);
916
917                                         }
918                                         
919                                 } while(list_next(this)!=L_NO_NEXT_ELEMENT);
920                 
921                                 /* 2bp post function */
922                                 if(moldyn->func2b_post) {
923                                         moldyn->func2b_post(moldyn,
924                                                             &(itom[i]),
925                                                             jtom,bc_ij);
926                                 }
927
928                         }
929                 }
930 //printf("DEBUG: %.15f \n",itom[i].f.x);
931         }
932
933         return 0;
934 }
935
936 /*
937  * periodic boundayr checking
938  */
939
940 int check_per_bound(t_moldyn *moldyn,t_3dvec *a) {
941         
942         double x,y,z;
943         t_3dvec *dim;
944
945         dim=&(moldyn->dim);
946
947         x=0.5*dim->x;
948         y=0.5*dim->y;
949         z=0.5*dim->z;
950
951         if(moldyn->status&MOLDYN_STAT_PBX) {
952                 if(a->x>=x) a->x-=dim->x;
953                 else if(-a->x>x) a->x+=dim->x;
954         }
955         if(moldyn->status&MOLDYN_STAT_PBY) {
956                 if(a->y>=y) a->y-=dim->y;
957                 else if(-a->y>y) a->y+=dim->y;
958         }
959         if(moldyn->status&MOLDYN_STAT_PBZ) {
960                 if(a->z>=z) a->z-=dim->z;
961                 else if(-a->z>z) a->z+=dim->z;
962         }
963
964         return 0;
965 }
966         
967
968 /*
969  * example potentials
970  */
971
972 /* harmonic oscillator potential and force */
973
974 int harmonic_oscillator(t_moldyn *moldyn,t_atom *ai,t_atom *aj,u8 bc) {
975
976         t_ho_params *params;
977         t_3dvec force,distance;
978         double d;
979         double sc,equi_dist;
980
981         params=moldyn->pot2b_params;
982         sc=params->spring_constant;
983         equi_dist=params->equilibrium_distance;
984
985         v3_sub(&distance,&(aj->r),&(ai->r));
986         
987         if(bc) check_per_bound(moldyn,&distance);
988         d=v3_norm(&distance);
989         if(d<=moldyn->cutoff) {
990                 /* energy is 1/2 (d-d0)^2, but we will add this twice ... */
991                 moldyn->energy+=(0.25*sc*(d-equi_dist)*(d-equi_dist));
992                 /* f = -grad E; grad r_ij = -1 1/r_ij distance */
993                 v3_scale(&force,&distance,sc*(1.0-(equi_dist/d)));
994                 v3_add(&(ai->f),&(ai->f),&force);
995         }
996
997         return 0;
998 }
999
1000 /* lennard jones potential & force for one sort of atoms */
1001  
1002 int lennard_jones(t_moldyn *moldyn,t_atom *ai,t_atom *aj,u8 bc) {
1003
1004         t_lj_params *params;
1005         t_3dvec force,distance;
1006         double d,h1,h2;
1007         double eps,sig6,sig12;
1008
1009         params=moldyn->pot2b_params;
1010         eps=params->epsilon4;
1011         sig6=params->sigma6;
1012         sig12=params->sigma12;
1013
1014         v3_sub(&distance,&(aj->r),&(ai->r));
1015         if(bc) check_per_bound(moldyn,&distance);
1016         d=v3_absolute_square(&distance);        /* 1/r^2 */
1017         if(d<=moldyn->cutoff_square) {
1018                 d=1.0/d;                        /* 1/r^2 */
1019                 h2=d*d;                         /* 1/r^4 */
1020                 h2*=d;                          /* 1/r^6 */
1021                 h1=h2*h2;                       /* 1/r^12 */
1022                 /* energy is eps*..., but we will add this twice ... */
1023                 moldyn->energy+=0.5*eps*(sig12*h1-sig6*h2);
1024                 h2*=d;                          /* 1/r^8 */
1025                 h1*=d;                          /* 1/r^14 */
1026                 h2*=6*sig6;
1027                 h1*=12*sig12;
1028                 d=+h1-h2;
1029                 d*=eps;
1030                 v3_scale(&force,&distance,-1.0*d); /* f = - grad E */
1031                 v3_add(&(ai->f),&(ai->f),&force);
1032         }
1033
1034         return 0;
1035 }
1036
1037 /*
1038  * tersoff potential & force for 2 sorts of atoms
1039  */
1040
1041 /* create mixed terms from parameters and set them */
1042 int tersoff_mult_complete_params(t_tersoff_mult_params *p) {
1043
1044         printf("[moldyn] tersoff parameter completion\n");
1045         p->Smixed=sqrt(p->S[0]*p->S[1]);
1046         p->Rmixed=sqrt(p->R[0]*p->R[1]);
1047         p->Amixed=sqrt(p->A[0]*p->A[1]);
1048         p->Bmixed=sqrt(p->B[0]*p->B[1]);
1049         p->lambda_m=0.5*(p->lambda[0]+p->lambda[1]);
1050         p->mu_m=0.5*(p->mu[0]+p->mu[1]);
1051
1052         printf("[moldyn] tersoff mult parameter info:\n");
1053         printf("  S (m)  | %.12f | %.12f | %.12f\n",p->S[0],p->S[1],p->Smixed);
1054         printf("  R (m)  | %.12f | %.12f | %.12f\n",p->R[0],p->R[1],p->Rmixed);
1055         printf("  A (eV) | %f | %f | %f\n",p->A[0]/EV,p->A[1]/EV,p->Amixed/EV);
1056         printf("  B (eV) | %f | %f | %f\n",p->B[0]/EV,p->B[1]/EV,p->Bmixed/EV);
1057         printf("  lambda | %f | %f | %f\n",p->lambda[0],p->lambda[1],
1058                                           p->lambda_m);
1059         printf("  mu     | %f | %f | %f\n",p->mu[0],p->mu[1],p->mu_m);
1060         printf("  beta   | %.10f | %.10f\n",p->beta[0],p->beta[1]);
1061         printf("  n      | %f | %f\n",p->n[0],p->n[1]);
1062         printf("  c      | %f | %f\n",p->c[0],p->c[1]);
1063         printf("  d      | %f | %f\n",p->d[0],p->d[1]);
1064         printf("  h      | %f | %f\n",p->h[0],p->h[1]);
1065         printf("  chi    | %f \n",p->chi);
1066
1067         return 0;
1068 }
1069
1070 /* tersoff 1 body part */
1071 int tersoff_mult_1bp(t_moldyn *moldyn,t_atom *ai) {
1072
1073         int num;
1074         t_tersoff_mult_params *params;
1075         t_tersoff_exchange *exchange;
1076         
1077         num=ai->bnum;
1078         params=moldyn->pot1b_params;
1079         exchange=&(params->exchange);
1080
1081         /*
1082          * simple: point constant parameters only depending on atom i to
1083          *         their right values
1084          */
1085
1086         exchange->beta_i=&(params->beta[num]);
1087         exchange->n_i=&(params->n[num]);
1088         exchange->c_i=&(params->c[num]);
1089         exchange->d_i=&(params->d[num]);
1090         exchange->h_i=&(params->h[num]);
1091
1092         exchange->betaini=pow(*(exchange->beta_i),*(exchange->n_i));
1093         exchange->ci2=params->c[num]*params->c[num];
1094         exchange->di2=params->d[num]*params->d[num];
1095         exchange->ci2di2=exchange->ci2/exchange->di2;
1096
1097         return 0;
1098 }
1099         
1100 /* tersoff 2 body part */
1101 int tersoff_mult_2bp(t_moldyn *moldyn,t_atom *ai,t_atom *aj,u8 bc) {
1102
1103         t_tersoff_mult_params *params;
1104         t_tersoff_exchange *exchange;
1105         t_3dvec dist_ij,force;
1106         double d_ij;
1107         double A,B,R,S,lambda,mu;
1108         double f_r,df_r;
1109         double f_c,df_c;
1110         int num;
1111         double s_r;
1112         double arg;
1113
1114         params=moldyn->pot2b_params;
1115         num=aj->bnum;
1116         exchange=&(params->exchange);
1117
1118         /* clear 3bp and 2bp post run */
1119         exchange->run3bp=0;
1120         exchange->run2bp_post=0;
1121
1122         /* reset S > r > R mark */
1123         exchange->d_ij_between_rs=0;
1124         
1125         /*
1126          * calc of 2bp contribution of V_ij and dV_ij/ji
1127          *
1128          * for Vij and dV_ij we need:
1129          * - f_c_ij, df_c_ij
1130          * - f_r_ij, df_r_ij
1131          *
1132          * for dV_ji we need:
1133          * - f_c_ji = f_c_ij, df_c_ji = df_c_ij
1134          * - f_r_ji = f_r_ij; df_r_ji = df_r_ij
1135          *
1136          */
1137
1138         /* dist_ij, d_ij */
1139         v3_sub(&dist_ij,&(aj->r),&(ai->r));
1140         if(bc) check_per_bound(moldyn,&dist_ij);
1141         d_ij=v3_norm(&dist_ij);
1142
1143         /* save for use in 3bp */
1144         exchange->d_ij=d_ij;
1145         exchange->dist_ij=dist_ij;
1146
1147         /* constants */
1148         if(num==ai->bnum) {
1149                 S=params->S[num];
1150                 R=params->R[num];
1151                 A=params->A[num];
1152                 B=params->B[num];
1153                 lambda=params->lambda[num];
1154                 mu=params->mu[num];
1155                 exchange->chi=1.0;
1156         }
1157         else {
1158                 S=params->Smixed;
1159                 R=params->Rmixed;
1160                 A=params->Amixed;
1161                 B=params->Bmixed;
1162                 lambda=params->lambda_m;
1163                 mu=params->mu_m;
1164                 params->exchange.chi=params->chi;
1165         }
1166
1167         /* if d_ij > S => no force & potential energy contribution */
1168         if(d_ij>S)
1169                 return 0;
1170
1171         /* more constants */
1172         exchange->beta_j=&(params->beta[num]);
1173         exchange->n_j=&(params->n[num]);
1174         exchange->c_j=&(params->c[num]);
1175         exchange->d_j=&(params->d[num]);
1176         exchange->h_j=&(params->h[num]);
1177         if(num==ai->bnum) {
1178                 exchange->betajnj=exchange->betaini;
1179                 exchange->cj2=exchange->ci2;
1180                 exchange->dj2=exchange->di2;
1181                 exchange->cj2dj2=exchange->ci2di2;
1182         }
1183         else {
1184                 exchange->betajnj=pow(*(exchange->beta_j),*(exchange->n_j));
1185                 exchange->cj2=params->c[num]*params->c[num];
1186                 exchange->dj2=params->d[num]*params->d[num];
1187                 exchange->cj2dj2=exchange->cj2/exchange->dj2;
1188         }
1189
1190         /* f_r_ij = f_r_ji, df_r_ij = df_r_ji */
1191         f_r=A*exp(-lambda*d_ij);
1192         df_r=lambda*f_r/d_ij;
1193
1194         /* f_a, df_a calc (again, same for ij and ji) | save for later use! */
1195         exchange->f_a=-B*exp(-mu*d_ij);
1196         exchange->df_a=-mu*exchange->f_a/d_ij;
1197
1198         /* f_c, df_c calc (again, same for ij and ji) */
1199         if(d_ij<R) {
1200                 /* f_c = 1, df_c = 0 */
1201                 f_c=1.0;
1202                 df_c=0.0;
1203                 /* two body contribution (ij, ji) */
1204                 v3_scale(&force,&dist_ij,-df_r);
1205         }
1206         else {
1207                 s_r=S-R;
1208                 arg=M_PI*(d_ij-R)/s_r;
1209                 f_c=0.5+0.5*cos(arg);
1210                 df_c=-0.5*sin(arg)*(M_PI/(s_r*d_ij));
1211                 /* two body contribution (ij, ji) */
1212                 v3_scale(&force,&dist_ij,-df_c*f_r-df_r*f_c);
1213                 /* tell 3bp that S > r > R */
1214                 exchange->d_ij_between_rs=1;
1215         }
1216
1217         /* add forces of 2bp (ij, ji) contribution
1218          * dVij = dVji and we sum up both: no 1/2) */
1219         v3_add(&(ai->f),&(ai->f),&force);
1220
1221         /* energy 2bp contribution (ij, ji) is 0.5 f_r f_c ... */
1222         moldyn->energy+=(0.5*f_r*f_c);
1223
1224         /* save for use in 3bp */
1225         exchange->f_c=f_c;
1226         exchange->df_c=df_c;
1227
1228         /* enable the run of 3bp function and 2bp post processing */
1229         exchange->run3bp=1;
1230         exchange->run2bp_post=1;
1231
1232         /* reset 3bp sums */
1233         exchange->zeta_ij=0.0;
1234         exchange->zeta_ji=0.0;
1235         v3_zero(&(exchange->dzeta_ij));
1236         v3_zero(&(exchange->dzeta_ji));
1237
1238         return 0;
1239 }
1240
1241 /* tersoff 2 body post part */
1242
1243 int tersoff_mult_post_2bp(t_moldyn *moldyn,t_atom *ai,t_atom *aj,u8 bc) {
1244
1245         /*
1246          * here we have to allow for the 3bp sums
1247          *
1248          * that is:
1249          * - zeta_ij, dzeta_ij
1250          * - zeta_ji, dzeta_ji
1251          *
1252          * to compute the 3bp contribution to:
1253          * - Vij, dVij
1254          * - dVji
1255          *
1256          */
1257
1258         t_tersoff_mult_params *params;
1259         t_tersoff_exchange *exchange;
1260
1261         t_3dvec force,temp;
1262         t_3dvec *dist_ij;
1263         double b,db,tmp;
1264         double f_c,df_c,f_a,df_a;
1265         double chi,ni,betaini,nj,betajnj;
1266         double zeta;
1267
1268         params=moldyn->pot2b_params;
1269         exchange=&(params->exchange);
1270
1271         /* we do not run if f_c_ij was detected to be 0! */
1272         if(!(exchange->run2bp_post))
1273                 return 0;
1274
1275         f_c=exchange->f_c;
1276         df_c=exchange->df_c;
1277         f_a=exchange->f_a;
1278         df_a=exchange->df_a;
1279         betaini=exchange->betaini;
1280         betajnj=exchange->betajnj;
1281         ni=*(exchange->n_i);
1282         nj=*(exchange->n_j);
1283         chi=exchange->chi;
1284         dist_ij=&(exchange->dist_ij);
1285         
1286         /* Vij and dVij */
1287         zeta=exchange->zeta_ij;
1288         if(zeta==0.0) {
1289                 moldyn->debug++;                /* just for debugging ... */
1290                 db=0.0;
1291                 b=chi;
1292                 v3_scale(&force,dist_ij,df_a*b*f_c);
1293         }
1294         else {
1295                 tmp=betaini*pow(zeta,ni-1.0);           /* beta^n * zeta^n-1 */
1296                 b=(1+zeta*tmp);                         /* 1 + beta^n zeta^n */
1297                 db=chi*pow(b,-1.0/(2*ni)-1);            /* x(...)^(-1/2n - 1) */
1298                 b=db*b;                                 /* b_ij */
1299                 db*=-0.5*tmp;                           /* db_ij */
1300                 v3_scale(&force,&(exchange->dzeta_ij),f_a*db);
1301                 v3_scale(&temp,dist_ij,df_a*b);
1302                 v3_add(&force,&force,&temp);
1303                 v3_scale(&force,&force,f_c);
1304         }
1305         v3_scale(&temp,dist_ij,df_c*b*f_a);
1306         v3_add(&force,&force,&temp);
1307         v3_scale(&force,&force,-0.5);
1308
1309         /* add force */
1310         v3_add(&(ai->f),&(ai->f),&force);
1311
1312         /* add energy of 3bp sum */
1313         moldyn->energy+=(0.5*f_c*b*f_a);
1314
1315         /* dVji */
1316         zeta=exchange->zeta_ji;
1317         if(zeta==0.0) {
1318                 moldyn->debug++;
1319                 b=chi;
1320                 v3_scale(&force,dist_ij,df_a*b*f_c);
1321         }
1322         else {
1323                 tmp=betajnj*pow(zeta,nj-1.0);           /* beta^n * zeta^n-1 */
1324                 b=(1+zeta*tmp);                         /* 1 + beta^n zeta^n */
1325                 db=chi*pow(b,-1.0/(2*nj)-1);            /* x(...)^(-1/2n - 1) */
1326                 b=db*b;                                 /* b_ij */
1327                 db*=-0.5*tmp;                           /* db_ij */
1328                 v3_scale(&force,&(exchange->dzeta_ji),f_a*db);
1329                 v3_scale(&temp,dist_ij,df_a*b);
1330                 v3_add(&force,&force,&temp);
1331                 v3_scale(&force,&force,f_c);
1332         }
1333         v3_scale(&temp,dist_ij,df_c*b*f_a);
1334         v3_add(&force,&force,&temp);
1335         v3_scale(&force,&force,-0.5);
1336
1337         /* add force */
1338         v3_sub(&(ai->f),&(ai->f),&force);
1339
1340         return 0;
1341 }
1342
1343 /* tersoff 3 body part */
1344
1345 int tersoff_mult_3bp(t_moldyn *moldyn,t_atom *ai,t_atom *aj,t_atom *ak,u8 bc) {
1346
1347         t_tersoff_mult_params *params;
1348         t_tersoff_exchange *exchange;
1349         t_3dvec dist_ij,dist_ik,dist_jk;
1350         t_3dvec temp1,temp2;
1351         t_3dvec *dzeta;
1352         double R,S,s_r;
1353         double B,mu;
1354         double d_ij,d_ik,d_jk;
1355         double rr,dd;
1356         double f_c,df_c;
1357         double f_c_ik,df_c_ik,arg;
1358         double f_c_jk;
1359         double n,c,d,h;
1360         double c2,d2,c2d2;
1361         double cos_theta,d_costheta1,d_costheta2;
1362         double h_cos,d2_h_cos2;
1363         double frac,g,zeta,chi;
1364         double tmp;
1365         int num;
1366
1367         params=moldyn->pot3b_params;
1368         exchange=&(params->exchange);
1369
1370         if(!(exchange->run3bp))
1371                 return 0;
1372
1373         /*
1374          * calc of 3bp contribution of V_ij and dV_ij/ji/jk &
1375          * 2bp contribution of dV_jk
1376          *
1377          * for Vij and dV_ij we still need:
1378          * - b_ij, db_ij (zeta_ij)
1379          *   - f_c_ik, df_c_ik, constants_i, cos_theta_ijk, d_costheta_ijk
1380          *
1381          * for dV_ji we still need:
1382          * - b_ji, db_ji (zeta_ji)
1383          *   - f_c_jk, d_c_jk, constants_j, cos_theta_jik, d_costheta_jik
1384          *
1385          * for dV_jk we need:
1386          * - f_c_jk
1387          * - f_a_jk
1388          * - db_jk (zeta_jk)
1389          *   - f_c_ji, df_c_ji, constants_j, cos_theta_jki, d_costheta_jki
1390          *
1391          */
1392
1393         /*
1394          * get exchange data 
1395          */
1396
1397         /* dist_ij, d_ij - this is < S_ij ! */
1398         dist_ij=exchange->dist_ij;
1399         d_ij=exchange->d_ij;
1400
1401         /* f_c_ij, df_c_ij (same for ji) */
1402         f_c=exchange->f_c;
1403         df_c=exchange->df_c;
1404
1405         /*
1406          * calculate unknown values now ...
1407          */
1408
1409         /* V_ij and dV_ij stuff (in b_ij there is f_c_ik) */
1410
1411         /* dist_ik, d_ik */
1412         v3_sub(&dist_ik,&(ak->r),&(ai->r));
1413         if(bc) check_per_bound(moldyn,&dist_ik);
1414         d_ik=v3_norm(&dist_ik);
1415
1416         /* ik constants */
1417         num=ai->bnum;
1418         if(num==ak->bnum) {
1419                 R=params->R[num];
1420                 S=params->S[num];
1421         }
1422         else {
1423                 R=params->Rmixed;
1424                 S=params->Smixed;
1425         }
1426
1427         /* zeta_ij/dzeta_ij contribution only for d_ik < S */
1428         if(d_ik<S) {
1429
1430                 /* get constants_i from exchange data */
1431                 n=*(exchange->n_i);
1432                 c=*(exchange->c_i);
1433                 d=*(exchange->d_i);
1434                 h=*(exchange->h_i);
1435                 c2=exchange->ci2;
1436                 d2=exchange->di2;
1437                 c2d2=exchange->ci2di2;
1438
1439                 /* cosine of theta_ijk by scalaproduct */
1440                 rr=v3_scalar_product(&dist_ij,&dist_ik);
1441                 dd=d_ij*d_ik;
1442                 cos_theta=rr/dd;
1443
1444                 /* d_costheta */
1445                 tmp=1.0/dd;
1446                 d_costheta1=cos_theta/(d_ij*d_ij)-tmp;
1447                 d_costheta2=cos_theta/(d_ik*d_ik)-tmp;
1448
1449                 /* some usefull values */
1450                 h_cos=(h-cos_theta);
1451                 d2_h_cos2=d2+(h_cos*h_cos);
1452                 frac=c2/(d2_h_cos2);
1453
1454                 /* g(cos_theta) */
1455                 g=1.0+c2d2-frac;
1456
1457                 /* d_costheta_ij and dg(cos_theta) - needed in any case! */
1458                 v3_scale(&temp1,&dist_ij,d_costheta1);
1459                 v3_scale(&temp2,&dist_ik,d_costheta2);
1460                 v3_add(&temp1,&temp1,&temp2);
1461                 v3_scale(&temp1,&temp1,-2.0*frac*h_cos/d2_h_cos2); /* dg */
1462
1463                 /* f_c_ik & df_c_ik + {d,}zeta contribution */
1464                 dzeta=&(exchange->dzeta_ij);
1465                 if(d_ik<R) {
1466                         /* {d,}f_c_ik */
1467                         // => f_c_ik=1.0;
1468                         // => df_c_ik=0.0; of course we do not set this!
1469
1470                         /* zeta_ij */
1471                         exchange->zeta_ij+=g;
1472
1473                         /* dzeta_ij */
1474                         v3_add(dzeta,dzeta,&temp1);
1475                 }
1476                 else {
1477                         /* {d,}f_c_ik */
1478                         s_r=S-R;
1479                         arg=M_PI*(d_ik-R)/s_r;
1480                         f_c_ik=0.5+0.5*cos(arg);
1481                         df_c_ik=-0.5*sin(arg)*(M_PI/(s_r*d_ik));
1482
1483                         /* zeta_ij */
1484                         exchange->zeta_ij+=f_c_ik*g;
1485
1486                         /* dzeta_ij */
1487                         v3_scale(&temp1,&temp1,f_c_ik);
1488                         v3_scale(&temp2,&dist_ik,g*df_c_ik);
1489                         v3_add(&temp1,&temp1,&temp2);
1490                         v3_add(dzeta,dzeta,&temp1);
1491                 }
1492         }
1493
1494         /* dV_ji stuff (in b_ji there is f_c_jk) + dV_jk stuff! */
1495
1496         /* dist_jk, d_jk */
1497         v3_sub(&dist_jk,&(ak->r),&(aj->r));
1498         if(bc) check_per_bound(moldyn,&dist_jk);
1499         d_jk=v3_norm(&dist_jk);
1500
1501         /* jk constants */
1502         num=aj->bnum;
1503         if(num==ak->bnum) {
1504                 R=params->R[num];
1505                 S=params->S[num];
1506                 B=params->B[num];
1507                 mu=params->mu[num];
1508                 chi=1.0;
1509         }
1510         else {
1511                 R=params->Rmixed;
1512                 S=params->Smixed;
1513                 B=params->Bmixed;
1514                 mu=params->mu_m;
1515                 chi=params->chi;
1516         }
1517
1518         /* zeta_ji/dzeta_ji contribution only for d_jk < S_jk */
1519         if(d_jk<S) {
1520
1521                 /* constants_j from exchange data */
1522                 n=*(exchange->n_j);
1523                 c=*(exchange->c_j);
1524                 d=*(exchange->d_j);
1525                 h=*(exchange->h_j);
1526                 c2=exchange->cj2;
1527                 d2=exchange->dj2;
1528                 c2d2=exchange->cj2dj2;
1529
1530                 /* cosine of theta_jik by scalaproduct */
1531                 rr=v3_scalar_product(&dist_ij,&dist_jk); /* times -1 */
1532                 dd=d_ij*d_jk;
1533                 cos_theta=rr/dd;
1534
1535                 /* d_costheta */
1536                 d_costheta1=1.0/(d_jk*d_ij);
1537                 d_costheta2=cos_theta/(d_ij*d_ij); /* in fact -cos(), but ^ */
1538
1539                 /* some usefull values */
1540                 h_cos=(h-cos_theta);
1541                 d2_h_cos2=d2+(h_cos*h_cos);
1542                 frac=c2/(d2_h_cos2);
1543
1544                 /* g(cos_theta) */
1545                 g=1.0+c2d2-frac;
1546
1547                 /* d_costheta_ij and dg(cos_theta) - needed in any case! */
1548                 v3_scale(&temp1,&dist_jk,d_costheta1);
1549                 v3_scale(&temp2,&dist_ij,-d_costheta2); /* ji -> ij => -1 */
1550                 v3_add(&temp1,&temp1,&temp2);
1551                 v3_scale(&temp1,&temp1,-2.0*frac*h_cos/d2_h_cos2); /* dg */
1552
1553                 /* f_c_jk + {d,}zeta contribution (df_c_jk = 0) */
1554                 dzeta=&(exchange->dzeta_ji);
1555                 if(d_jk<R) {
1556                         /* f_c_jk */
1557                         f_c_jk=1.0;
1558
1559                         /* zeta_ji */
1560                         exchange->zeta_ji+=g;
1561
1562                         /* dzeta_ji */
1563                         v3_add(dzeta,dzeta,&temp1);
1564                 }
1565                 else {
1566                         /* f_c_jk */
1567                         s_r=S-R;
1568                         arg=M_PI*(d_jk-R)/s_r;
1569                         f_c_jk=0.5+0.5*cos(arg);
1570
1571                         /* zeta_ji */
1572                         exchange->zeta_ji+=f_c_jk*g;
1573
1574                         /* dzeta_ij */
1575                         v3_scale(&temp1,&temp1,f_c_jk);
1576                         v3_add(dzeta,dzeta,&temp1);
1577                 }
1578
1579                 /* dV_jk stuff | add force contribution on atom i immediately */
1580                 if(exchange->d_ij_between_rs) {
1581                         zeta=f_c*g;
1582                         v3_scale(&temp1,&temp1,f_c);
1583                         v3_scale(&temp2,&dist_ij,df_c);
1584                         v3_add(&temp1,&temp1,&temp2);
1585                 }
1586                 else {
1587                         zeta=g;
1588                         // dzeta_jk is simply dg, which is temp1
1589                 }
1590                 /* betajnj * zeta_jk ^ nj-1 */
1591                 tmp=exchange->betajnj*pow(zeta,(n-1.0));
1592                 tmp=-chi/2.0*pow(1+tmp*zeta,-1.0/(2.0*n)-1)*tmp;
1593                 v3_scale(&temp1,&temp1,tmp*B*exp(-mu*d_jk)*f_c_jk*0.5);
1594                 v3_add(&(ai->f),&(ai->f),&temp1); /* -1 skipped in f_a calc ^ */
1595                                                   /* scaled with 0.5 ^ */
1596         }
1597
1598         return 0;
1599 }
1600
1601
1602 /*
1603  * debugging / critical check functions
1604  */
1605
1606 int moldyn_bc_check(t_moldyn *moldyn) {
1607
1608         t_atom *atom;
1609         t_3dvec *dim;
1610         int i;
1611
1612         atom=moldyn->atom;
1613         dim=&(moldyn->dim);
1614
1615         for(i=0;i<moldyn->count;i++) {
1616                 if(atom[i].r.x>=dim->x/2||-atom[i].r.x>dim->x/2)
1617                         printf("FATAL: atom %d: x: %.20f (%.20f)\n",
1618                                i,atom[i].r.x*1e10,dim->x/2*1e10);
1619                 if(atom[i].r.y>=dim->y/2||-atom[i].r.y>dim->y/2)
1620                         printf("FATAL: atom %d: y: %.20f (%.20f)\n",
1621                                i,atom[i].r.y*1e10,dim->y/2*1e10);
1622                 if(atom[i].r.z>=dim->z/2||-atom[i].r.z>dim->z/2)
1623                         printf("FATAL: atom %d: z: %.20f (%.20f)\n",
1624                                i,atom[i].r.z*1e10,dim->z/2*1e10);
1625         }
1626
1627         return 0;
1628 }
1629