2 * tersoff_orig.c - tersoff potential
4 * author: Frank Zirkelbach <frank.zirkelbach@physik.uni-augsburg.de>
12 #include <sys/types.h>
18 #include "../moldyn.h"
19 #include "../math/math.h"
20 #include "tersoff_orig.h"
22 /* create mixed terms from parameters and set them */
23 int tersoff_mult_complete_params(t_tersoff_mult_params *p) {
25 printf("[moldyn] tersoff parameter completion\n");
26 p->S2[0]=p->S[0]*p->S[0];
27 p->S2[1]=p->S[1]*p->S[1];
28 p->Smixed=sqrt(p->S[0]*p->S[1]);
29 p->S2mixed=p->Smixed*p->Smixed;
30 p->Rmixed=sqrt(p->R[0]*p->R[1]);
31 p->Amixed=sqrt(p->A[0]*p->A[1]);
32 p->Bmixed=sqrt(p->B[0]*p->B[1]);
33 p->lambda_m=0.5*(p->lambda[0]+p->lambda[1]);
34 p->mu_m=0.5*(p->mu[0]+p->mu[1]);
36 printf("[moldyn] tersoff mult parameter info:\n");
37 printf(" S (A) | %f | %f | %f\n",p->S[0],p->S[1],p->Smixed);
38 printf(" R (A) | %f | %f | %f\n",p->R[0],p->R[1],p->Rmixed);
39 printf(" A (eV) | %f | %f | %f\n",p->A[0]/EV,p->A[1]/EV,p->Amixed/EV);
40 printf(" B (eV) | %f | %f | %f\n",p->B[0]/EV,p->B[1]/EV,p->Bmixed/EV);
41 printf(" lambda | %f | %f | %f\n",p->lambda[0],p->lambda[1],
43 printf(" mu | %f | %f | %f\n",p->mu[0],p->mu[1],p->mu_m);
44 printf(" beta | %.10f | %.10f\n",p->beta[0],p->beta[1]);
45 printf(" n | %f | %f\n",p->n[0],p->n[1]);
46 printf(" c | %f | %f\n",p->c[0],p->c[1]);
47 printf(" d | %f | %f\n",p->d[0],p->d[1]);
48 printf(" h | %f | %f\n",p->h[0],p->h[1]);
49 printf(" chi | %f \n",p->chi);
54 /* tersoff 1 body part */
55 int tersoff_mult_1bp(t_moldyn *moldyn,t_atom *ai) {
58 t_tersoff_mult_params *params;
59 t_tersoff_exchange *exchange;
62 params=moldyn->pot_params;
63 exchange=&(params->exchange);
66 * simple: point constant parameters only depending on atom i to
70 exchange->beta_i=&(params->beta[brand]);
71 exchange->n_i=&(params->n[brand]);
72 exchange->c_i=&(params->c[brand]);
73 exchange->d_i=&(params->d[brand]);
74 exchange->h_i=&(params->h[brand]);
76 exchange->betaini=pow(*(exchange->beta_i),*(exchange->n_i));
77 exchange->ci2=params->c[brand]*params->c[brand];
78 exchange->di2=params->d[brand]*params->d[brand];
79 exchange->ci2di2=exchange->ci2/exchange->di2;
84 /* tersoff 2 body part */
85 int tersoff_mult_2bp(t_moldyn *moldyn,t_atom *ai,t_atom *aj,u8 bc) {
87 t_tersoff_mult_params *params;
88 t_tersoff_exchange *exchange;
89 t_3dvec dist_ij,force;
91 double A,B,R,S,S2,lambda,mu;
98 /* use newtons third law */
101 params=moldyn->pot_params;
103 exchange=&(params->exchange);
105 /* clear 3bp and 2bp post run */
107 exchange->run2bp_post=0;
109 /* reset S > r > R mark */
110 exchange->d_ij_between_rs=0;
113 * calc of 2bp contribution of V_ij and dV_ij/ji
115 * for Vij and dV_ij we need:
120 * - f_c_ji = f_c_ij, df_c_ji = df_c_ij
121 * - f_r_ji = f_r_ij; df_r_ji = df_r_ij
125 /* determine cutoff square */
127 S2=params->S2[brand];
132 v3_sub(&dist_ij,&(aj->r),&(ai->r));
133 if(bc) check_per_bound(moldyn,&dist_ij);
134 d_ij2=v3_absolute_square(&dist_ij);
136 /* if d_ij2 > S2 => no force & potential energy contribution */
140 /* now we will need the distance */
141 //d_ij=v3_norm(&dist_ij);
144 /* save for use in 3bp */
146 exchange->d_ij2=d_ij2;
147 exchange->dist_ij=dist_ij;
150 exchange->beta_j=&(params->beta[brand]);
151 exchange->n_j=&(params->n[brand]);
152 exchange->c_j=&(params->c[brand]);
153 exchange->d_j=&(params->d[brand]);
154 exchange->h_j=&(params->h[brand]);
155 if(brand==ai->brand) {
160 lambda=params->lambda[brand];
161 mu=params->mu[brand];
163 exchange->betajnj=exchange->betaini;
164 exchange->cj2=exchange->ci2;
165 exchange->dj2=exchange->di2;
166 exchange->cj2dj2=exchange->ci2di2;
173 lambda=params->lambda_m;
175 exchange->chi=params->chi;
176 exchange->betajnj=pow(*(exchange->beta_j),*(exchange->n_j));
177 exchange->cj2=params->c[brand]*params->c[brand];
178 exchange->dj2=params->d[brand]*params->d[brand];
179 exchange->cj2dj2=exchange->cj2/exchange->dj2;
182 /* f_r_ij = f_r_ji, df_r_ij = df_r_ji */
183 f_r=A*exp(-lambda*d_ij);
184 df_r=lambda*f_r/d_ij;
186 /* f_a, df_a calc (again, same for ij and ji) | save for later use! */
187 exchange->f_a=-B*exp(-mu*d_ij);
188 exchange->df_a=mu*exchange->f_a/d_ij;
190 /* f_c, df_c calc (again, same for ij and ji) */
192 /* f_c = 1, df_c = 0 */
195 /* two body contribution (ij, ji) */
196 v3_scale(&force,&dist_ij,-df_r);
200 arg=M_PI*(d_ij-R)/s_r;
201 f_c=0.5+0.5*cos(arg);
202 df_c=0.5*sin(arg)*(M_PI/(s_r*d_ij));
203 /* two body contribution (ij, ji) */
204 v3_scale(&force,&dist_ij,-df_c*f_r-df_r*f_c);
205 /* tell 3bp that S > r > R */
206 exchange->d_ij_between_rs=1;
209 /* add forces of 2bp (ij, ji) contribution
210 * dVij = dVji and we sum up both: no 1/2) */
211 v3_add(&(ai->f),&(ai->f),&force);
214 virial_calc(ai,&force,&dist_ij);
215 //ai->virial.xx-=force.x*dist_ij.x;
216 //ai->virial.yy-=force.y*dist_ij.y;
217 //ai->virial.zz-=force.z*dist_ij.z;
218 //ai->virial.xy-=force.x*dist_ij.y;
219 //ai->virial.xz-=force.x*dist_ij.z;
220 //ai->virial.yz-=force.y*dist_ij.z;
223 if(ai==&(moldyn->atom[0])) {
224 printf("dVij, dVji (2bp) contrib: [%d %d]\n",ai->tag,aj->tag);
225 printf("adding %f %f %f\n",force.x,force.y,force.z);
226 printf("total i: %f %f %f\n",ai->f.x,ai->f.y,ai->f.z);
230 if(ai==&(moldyn->atom[0])) {
231 printf("dVij, dVji (2bp) contrib:\n");
232 printf("%f | %f\n",force.x*dist_ij.x,ai->virial.xx);
233 printf("%f | %f\n",force.y*dist_ij.y,ai->virial.yy);
234 printf("%f | %f\n",force.z*dist_ij.z,ai->virial.zz);
238 /* energy 2bp contribution (ij, ji) is 0.5 f_r f_c ... */
239 moldyn->energy+=(0.5*f_r*f_c);
241 /* save for use in 3bp */
245 /* enable the run of 3bp function and 2bp post processing */
247 exchange->run2bp_post=1;
250 exchange->zeta_ij=0.0;
251 exchange->zeta_ji=0.0;
252 v3_zero(&(exchange->dzeta_ij));
253 v3_zero(&(exchange->dzeta_ji));
258 /* tersoff 2 body post part */
260 int tersoff_mult_post_2bp(t_moldyn *moldyn,t_atom *ai,t_atom *aj,u8 bc) {
263 * here we have to allow for the 3bp sums
266 * - zeta_ij, dzeta_ij
267 * - zeta_ji, dzeta_ji
269 * to compute the 3bp contribution to:
275 t_tersoff_mult_params *params;
276 t_tersoff_exchange *exchange;
281 double f_c,df_c,f_a,df_a;
282 double chi,ni,betaini,nj,betajnj;
285 params=moldyn->pot_params;
286 exchange=&(params->exchange);
288 /* we do not run if f_c_ij was detected to be 0! */
289 if(!(exchange->run2bp_post))
296 betaini=exchange->betaini;
297 betajnj=exchange->betajnj;
301 dist_ij=&(exchange->dist_ij);
304 zeta=exchange->zeta_ij;
306 moldyn->debug++; /* just for debugging ... */
308 v3_scale(&force,dist_ij,df_a*b*f_c);
311 tmp=betaini*pow(zeta,ni-1.0); /* beta^n * zeta^n-1 */
312 b=(1+zeta*tmp); /* 1 + beta^n zeta^n */
313 db=chi*pow(b,-1.0/(2.0*ni)-1); /* x(...)^(-1/2n - 1) */
315 db*=-0.5*tmp; /* db_ij */
316 v3_scale(&force,&(exchange->dzeta_ij),f_a*db);
317 v3_scale(&temp,dist_ij,df_a*b);
318 v3_add(&force,&force,&temp);
319 v3_scale(&force,&force,f_c);
321 v3_scale(&temp,dist_ij,df_c*b*f_a);
322 v3_add(&force,&force,&temp);
323 v3_scale(&force,&force,-0.5);
326 v3_add(&(ai->f),&(ai->f),&force);
329 virial_calc(ai,&force,dist_ij);
330 //ai->virial.xx-=force.x*dist_ij->x;
331 //ai->virial.yy-=force.y*dist_ij->y;
332 //ai->virial.zz-=force.z*dist_ij->z;
333 //ai->virial.xy-=force.x*dist_ij->y;
334 //ai->virial.xz-=force.x*dist_ij->z;
335 //ai->virial.yz-=force.y*dist_ij->z;
338 if(ai==&(moldyn->atom[0])) {
339 printf("dVij (3bp) contrib: [%d %d sum]\n",ai->tag,aj->tag);
340 printf("adding %f %f %f\n",force.x,force.y,force.z);
341 printf("total i: %f %f %f\n",ai->f.x,ai->f.y,ai->f.z);
345 if(ai==&(moldyn->atom[0])) {
346 printf("dVij (3bp) contrib:\n");
347 printf("%f | %f\n",force.x*dist_ij->x,ai->virial.xx);
348 printf("%f | %f\n",force.y*dist_ij->y,ai->virial.yy);
349 printf("%f | %f\n",force.z*dist_ij->z,ai->virial.zz);
353 /* add energy of 3bp sum */
354 moldyn->energy+=(0.5*f_c*b*f_a);
357 zeta=exchange->zeta_ji;
361 v3_scale(&force,dist_ij,df_a*b*f_c);
364 tmp=betajnj*pow(zeta,nj-1.0); /* beta^n * zeta^n-1 */
365 b=(1+zeta*tmp); /* 1 + beta^n zeta^n */
366 db=chi*pow(b,-1.0/(2*nj)-1); /* x(...)^(-1/2n - 1) */
368 db*=-0.5*tmp; /* db_ij */
369 v3_scale(&force,&(exchange->dzeta_ji),f_a*db);
370 v3_scale(&temp,dist_ij,df_a*b);
371 v3_add(&force,&force,&temp);
372 v3_scale(&force,&force,f_c);
374 v3_scale(&temp,dist_ij,df_c*b*f_a);
375 v3_add(&force,&force,&temp);
376 v3_scale(&force,&force,-0.5);
379 v3_add(&(ai->f),&(ai->f),&force);
381 /* virial - plus sign, as dist_ij = - dist_ji - (really??) */
382 // TEST ... with a minus instead
383 virial_calc(ai,&force,dist_ij);
384 //ai->virial.xx-=force.x*dist_ij->x;
385 //ai->virial.yy-=force.y*dist_ij->y;
386 //ai->virial.zz-=force.z*dist_ij->z;
387 //ai->virial.xy-=force.x*dist_ij->y;
388 //ai->virial.xz-=force.x*dist_ij->z;
389 //ai->virial.yz-=force.y*dist_ij->z;
392 if(ai==&(moldyn->atom[0])) {
393 printf("dVji (3bp) contrib: [%d %d sum]\n",ai->tag,aj->tag);
394 printf("adding %f %f %f\n",force.x,force.y,force.z);
395 printf("total i: %f %f %f\n",ai->f.x,ai->f.y,ai->f.z);
399 if(ai==&(moldyn->atom[0])) {
400 printf("dVji (3bp) contrib:\n");
401 printf("%f | %f\n",force.x*dist_ij->x,ai->virial.xx);
402 printf("%f | %f\n",force.y*dist_ij->y,ai->virial.yy);
403 printf("%f | %f\n",force.z*dist_ij->z,ai->virial.zz);
410 /* tersoff 3 body part */
412 int tersoff_mult_3bp(t_moldyn *moldyn,t_atom *ai,t_atom *aj,t_atom *ak,u8 bc) {
414 t_tersoff_mult_params *params;
415 t_tersoff_exchange *exchange;
416 t_3dvec dist_ij,dist_ik,dist_jk;
421 double d_ij,d_ik,d_jk,d_ij2,d_ik2,d_jk2;
424 double f_c_ik,df_c_ik,arg;
428 double cos_theta,d_costheta1,d_costheta2;
429 double h_cos,d2_h_cos2;
430 double frac,g,zeta,chi;
434 params=moldyn->pot_params;
435 exchange=&(params->exchange);
437 if(!(exchange->run3bp))
441 * calc of 3bp contribution of V_ij and dV_ij/ji/jk &
442 * 2bp contribution of dV_jk
444 * for Vij and dV_ij we still need:
445 * - b_ij, db_ij (zeta_ij)
446 * - f_c_ik, df_c_ik, constants_i, cos_theta_ijk, d_costheta_ijk
448 * for dV_ji we still need:
449 * - b_ji, db_ji (zeta_ji)
450 * - f_c_jk, d_c_jk, constants_j, cos_theta_jik, d_costheta_jik
456 * - f_c_ji, df_c_ji, constants_j, cos_theta_jki, d_costheta_jki
464 /* dist_ij, d_ij - this is < S_ij ! */
465 dist_ij=exchange->dist_ij;
467 d_ij2=exchange->d_ij2;
469 /* f_c_ij, df_c_ij (same for ji) */
474 * calculate unknown values now ...
477 /* V_ij and dV_ij stuff (in b_ij there is f_c_ik) */
480 v3_sub(&dist_ik,&(ak->r),&(ai->r));
481 if(bc) check_per_bound(moldyn,&dist_ik);
482 d_ik2=v3_absolute_square(&dist_ik);
486 if(brand==ak->brand) {
489 S2=params->S2[brand];
497 /* zeta_ij/dzeta_ij contribution only for d_ik < S */
500 /* now we need d_ik */
503 /* get constants_i from exchange data */
510 c2d2=exchange->ci2di2;
512 /* cosine of theta_ijk by scalaproduct */
513 rr=v3_scalar_product(&dist_ij,&dist_ik);
519 d_costheta1=cos_theta/d_ij2-tmp;
520 d_costheta2=cos_theta/d_ik2-tmp;
522 /* some usefull values */
524 d2_h_cos2=d2+(h_cos*h_cos);
530 /* d_costheta_ij and dg(cos_theta) - needed in any case! */
531 v3_scale(&temp1,&dist_ij,d_costheta1);
532 v3_scale(&temp2,&dist_ik,d_costheta2);
533 v3_add(&temp1,&temp1,&temp2);
534 v3_scale(&temp1,&temp1,-2.0*frac*h_cos/d2_h_cos2); /* dg */
536 /* f_c_ik & df_c_ik + {d,}zeta contribution */
537 dzeta=&(exchange->dzeta_ij);
541 // => df_c_ik=0.0; of course we do not set this!
544 exchange->zeta_ij+=g;
547 v3_add(dzeta,dzeta,&temp1);
552 arg=M_PI*(d_ik-R)/s_r;
553 f_c_ik=0.5+0.5*cos(arg);
554 df_c_ik=0.5*sin(arg)*(M_PI/(s_r*d_ik));
557 exchange->zeta_ij+=f_c_ik*g;
560 v3_scale(&temp1,&temp1,f_c_ik);
561 v3_scale(&temp2,&dist_ik,g*df_c_ik);
562 v3_add(&temp1,&temp1,&temp2);
563 v3_add(dzeta,dzeta,&temp1);
567 /* dV_ji stuff (in b_ji there is f_c_jk) + dV_jk stuff! */
570 v3_sub(&dist_jk,&(ak->r),&(aj->r));
571 if(bc) check_per_bound(moldyn,&dist_jk);
572 d_jk2=v3_absolute_square(&dist_jk);
576 if(brand==ak->brand) {
579 S2=params->S2[brand];
581 mu=params->mu[brand];
593 /* zeta_ji/dzeta_ji contribution only for d_jk < S_jk */
596 /* now we need d_ik */
599 /* constants_j from exchange data */
606 c2d2=exchange->cj2dj2;
608 /* cosine of theta_jik by scalaproduct */
609 rr=-v3_scalar_product(&dist_ij,&dist_jk); /* -1, as ij -> ji */
615 d_costheta2=cos_theta/d_ij2;
617 /* some usefull values */
619 d2_h_cos2=d2+(h_cos*h_cos);
625 /* d_costheta_jik and dg(cos_theta) - needed in any case! */
626 v3_scale(&temp1,&dist_jk,d_costheta1);
627 v3_scale(&temp2,&dist_ij,-d_costheta2); /* ji -> ij => -1 */
628 //v3_add(&temp1,&temp1,&temp2);
629 v3_sub(&temp1,&temp1,&temp2); /* there is a minus! */
630 v3_scale(&temp1,&temp1,-2.0*frac*h_cos/d2_h_cos2); /* dg */
632 /* store dg for use in dV_jk */
633 v3_copy(&temp2,&temp1);
635 /* f_c_jk + {d,}zeta contribution (df_c_jk = 0) */
636 dzeta=&(exchange->dzeta_ji);
642 exchange->zeta_ji+=g;
645 v3_add(dzeta,dzeta,&temp1);
650 arg=M_PI*(d_jk-R)/s_r;
651 f_c_jk=0.5+0.5*cos(arg);
654 exchange->zeta_ji+=f_c_jk*g;
657 v3_scale(&temp1,&temp1,f_c_jk);
658 v3_add(dzeta,dzeta,&temp1);
661 /* dV_jk stuff | add force contribution on atom i immediately */
662 if(exchange->d_ij_between_rs) {
664 v3_scale(&temp1,&temp2,f_c);
665 v3_scale(&temp2,&dist_ij,df_c*g);
666 v3_add(&temp2,&temp2,&temp1); /* -> dzeta_jk in temp2 */
670 // dzeta_jk is simply dg, which is stored in temp2
672 /* betajnj * zeta_jk ^ nj-1 */
673 printf("FATAL db_jk calc!\n");
674 printf("(z1 + z2 + z3 ...)^n != z1^n + z2^n + z3^n + ...\n");
675 printf("st00pid me => tersoff_orig is obsolete!\n");
676 tmp=exchange->betajnj*pow(zeta,(n-1.0));
677 tmp=-chi/2.0*pow((1+tmp*zeta),(-1.0/(2.0*n)-1))*tmp;
679 if((ai->tag==0)&(aj->tag==864)) { // &(ak->tag==23)) {
681 printf("db: ni zeta = %f %f\n",
686 v3_scale(&temp2,&temp2,tmp*B*exp(-mu*d_jk)*f_c_jk*0.5);
687 v3_add(&(ai->f),&(ai->f),&temp2); /* -1 skipped in f_a calc ^ */
688 /* scaled with 0.5 ^ */
691 ai->virial.xx-=temp2.x*dist_jk.x;
692 ai->virial.yy-=temp2.y*dist_jk.y;
693 ai->virial.zz-=temp2.z*dist_jk.z;
694 ai->virial.xy-=temp2.x*dist_jk.y;
695 ai->virial.xz-=temp2.x*dist_jk.z;
696 ai->virial.yz-=temp2.y*dist_jk.z;
699 if(ai==&(moldyn->atom[0])) {
700 printf("dVjk (3bp) contrib: [%d %d %d]\n",ai->tag,aj->tag,ak->tag);
701 printf("adding %f %f %f\n",temp2.x,temp2.y,temp2.z);
702 printf("total i: %f %f %f\n",ai->f.x,ai->f.y,ai->f.z);
706 if(ai==&(moldyn->atom[0])) {
707 printf("dVjk (3bp) contrib:\n");
708 printf("%f | %f\n",temp2.x*dist_jk.x,ai->virial.xx);
709 printf("%f | %f\n",temp2.y*dist_jk.y,ai->virial.yy);
710 printf("%f | %f\n",temp2.z*dist_jk.z,ai->virial.zz);