}
lc->dnlc=count1;
- lc->countn=27;
- return count2;
+ return count1;
}
int link_cell_shutdown(t_moldyn *moldyn) {
/* sqaure of some variables */
moldyn->tau_square=moldyn->tau*moldyn->tau;
moldyn->cutoff_square=moldyn->cutoff*moldyn->cutoff;
+
/* calculate initial forces */
potential_force_calc(moldyn);
- /* do some checks before we actually start calculating bullshit */
+ /* some stupid checks before we actually start calculating bullshit */
if(moldyn->cutoff>0.5*moldyn->dim.x)
printf("[moldyn] warning: cutoff > 0.5 x dim.x\n");
if(moldyn->cutoff>0.5*moldyn->dim.y)
/* zero absolute time */
moldyn->time=0.0;
+
+ /* debugging, ignre */
+ moldyn->debug=0;
+
+ /* executing the schedule */
for(sched=0;sched<moldyn->schedule.content_count;sched++) {
/* setting amount of runs and finite time step size */
if(!(i%v)) {
visual_atoms(&(moldyn->vis),moldyn->time,
moldyn->atom,moldyn->count);
- printf("\rsched: %d, steps: %d",sched,i);
+ printf("\rsched: %d, steps: %d, theta: %d",
+ sched,i,moldyn->debug);
fflush(stdout);
}
}
if(schedule->hook)
schedule->hook(moldyn,schedule->hook_params);
+ /* get a new info line */
+ printf("\n");
+
}
return 0;
t_list neighbour_i2[27];
//t_list neighbour_j[27];
t_list *this,*that;
- u8 bc_ij,bc_ijk;
- int countn,dnlc;
+ u8 bc_ij,bc_ik;
+ int dnlc;
count=moldyn->count;
itom=moldyn->atom;
/* reset energy */
moldyn->energy=0.0;
+ /* get energy and force of every atom */
for(i=0;i<count;i++) {
/* reset force */
(itom[i].r.z+moldyn->dim.z/2)/lc->z,
neighbour_i);
- countn=lc->countn;
dnlc=lc->dnlc;
- for(j=0;j<countn;j++) {
+ for(j=0;j<27;j++) {
this=&(neighbour_i[j]);
list_reset(this);
!(jtom->attr&ATOM_ATTR_3BP))
continue;
- /* neighbourhood of atom j is not needed! */
-
- // link_cell_neighbour_index(moldyn,
- // (jtom->r.x+moldyn->dim.x/2)/lc->x,
- // (jtom->r.y+moldyn->dim.y/2)/lc->y,
- // (jtom->r.z+moldyn->dim.z/2)/lc->z,
- // neighbour_j);
-
-// /* neighbours of j */
-// for(k=0;k<lc->countn;k++) {
-//
-// that=&(neighbour_j[k]);
-// list_reset(that);
-//
-// if(that->start==NULL)
-// continue;
-//
-// bc_ijk=(k<lc->dnlc)?0:1;
-//
-// do {
-//
-// ktom=that->current->data;
-//
-// if(!(ktom->attr&ATOM_ATTR_3BP))
-// continue;
-//
-// if(ktom==jtom)
-// continue;
-//
-// if(ktom==&(itom[i]))
-// continue;
-//
-// moldyn->func3b(moldyn,&(itom[i]),jtom,ktom,bc_ijk);
-//
-/* } while(list_next(that)!=\ */
-// L_NO_NEXT_ELEMENT);
-//
-// }
-
/* copy the neighbour lists */
memcpy(neighbour_i2,neighbour_i,
27*sizeof(t_list));
/* get neighbours of i */
- for(k=0;k<countn;k++) {
+ for(k=0;k<27;k++) {
that=&(neighbour_i2[k]);
list_reset(that);
if(that->start==NULL)
continue;
- bc_ijk=(k<dnlc)?0:1;
+ bc_ik=(k<dnlc)?0:1;
do {
if(ktom==&(itom[i]))
continue;
- moldyn->func3b(moldyn,&(itom[i]),jtom,ktom,bc_ijk);
+ moldyn->func3b(moldyn,&(itom[i]),jtom,ktom,bc_ik|bc_ij);
} while(list_next(that)!=\
L_NO_NEXT_ELEMENT);
/* 2bp post function */
if(moldyn->func2b_post) {
-printf("before 2bp post: %.15f %.15f %.15f\n",itom[i].f.x,itom[i].r.x,itom[i].v.x);
+printf("pre(%d): %.15f %.15f %.15f\n",i,itom[i].f.x,itom[i].r.x,itom[i].v.x);
moldyn->func2b_post(moldyn,
&(itom[i]),
jtom,bc_ij);
-printf("after 2bp post: %.15f %.15f %.15f\n",itom[i].f.x,itom[i].r.x,itom[i].v.x);
+printf("post(%d): %.15f %.15f %.15f\n",i,itom[i].f.x,itom[i].r.x,itom[i].v.x);
}
}
params=moldyn->pot2b_params;
exchange=&(params->exchange);
- /* we do not run if f_c_ij was dtected to be 0! */
+ /* we do not run if f_c_ij was detected to be 0! */
if(!(exchange->run2bp_post))
return 0;
help=pow(db_ij_scale1,-1.0/(2*n)-1);
b_ij=chi*db_ij_scale1*help;
db_ij_scale1=-chi/(2*n)*help;
+printf("debug: %.20f %.20f %.20f\n",db_ij->x,exchange->sum1_3bp,exchange->sum2_3bp);
/* db_ij part */
v3_scale(db_ij,db_ij,(db_ij_scale1*db_ij_scale2));
d2=exchange->d2;
c2d2=exchange->c2d2;
+ /* cosine of theta by scalaproduct, *
+ * derivation of theta by law of cosines! */
numer=d_ij2+d_ik*d_ik-d_jk*d_jk;
denom=2*d_ij*d_ik;
cos_theta=numer/denom;
- /* prefere law of cosines, dot product -> nan (often) */
- //cos_theta=v3_scalar_product(&dist_ij,&dist_ik)/(d_ij*d_ik);
+ cos_theta=v3_scalar_product(&dist_ij,&dist_ik)/(d_ij*d_ik);
+printf("cos theta: %.25f\n",cos_theta);
+
+ /* hack - cos theta machine accuracy problems! */
+ if(cos_theta>1.0||cos_theta<-1.0) {
+ moldyn->debug++;
+ if(fabs(cos_theta)>1.0+ACCEPTABLE_ERROR)
+ printf("[moldyn] WARNING: cos theta failure!\n");
+ if(cos_theta<0)
+ cos_theta=-1.0;
+ else
+ cos_theta=1.0;
+ printf("THETA CORRECTION\n");
+ }
+
sin_theta=sqrt(1.0-(cos_theta*cos_theta));
theta=acos(cos_theta);
d_theta=(-1.0/sqrt(1.0-cos_theta*cos_theta))/(denom*denom);
d_theta2=2*denom-numer*2*d_ij/d_ik;
d_theta1*=d_theta;
d_theta2*=d_theta;
+printf("FOO %.15f %.15f\n",sin_theta,cos_theta);
h_cos=(h-cos_theta);
d2_h_cos2=d2+(h_cos*h_cos);
v3_scale(&temp,&dist_ik,d_theta2);
v3_add(&force,&force,&temp);
+printf("DA:%.20f %.20f %.20f\n",d_theta1,force.x,temp.x);
/* part 1 of db_ij */
v3_scale(&force,&force,sin_theta*2*h_cos*f_c_ik*frac/d2_h_cos2);