Trisurf Monte Carlo simulator
Samo Penic
2013-12-07 ded11ede7e9eb11c216d35d61ab9331e697f47bc
src/bondflip.c
@@ -31,30 +31,43 @@
    ts_uint i; //j;
    ts_double oldenergy, delta_energy;
 //   ts_triangle *lm=NULL,*lp=NULL, *lp1=NULL, *lp2=NULL, *lm1=NULL, *lm2=NULL;
    ts_vertex *kp=NULL,*km=NULL;
   ts_triangle *lm=NULL, *lp=NULL;
    ts_vertex *kp,*km;
    if(it->neigh->n< 3) return TS_FAIL;
    if(k->neigh->n< 3) return TS_FAIL;
    if(it->neigh_no< 3) return TS_FAIL;
    if(k->neigh_no< 3) return TS_FAIL;
    if(k==NULL || it==NULL){
        fatal("In bondflip, number of neighbours of k or it is less than 3!",999);
    }
    nei=0;
    for(i=0;i<it->neigh_no;i++){ // Finds the nn of it, that is k
        if(it->neigh[i]==k){
    for(i=0;i<it->neigh->n;i++){ // Finds the nn of it, that is k
        if(it->neigh->vtx[i]==k){
            nei=i;
            break;
        }
    }
    neip=nei+1;  // I don't like it.. Smells like I must have it in correct order
    neim=nei-1;
    if(neip>=it->neigh_no) neip=0;
    if((ts_int)neim<0) neim=it->neigh_no-1; /* casting is essential... If not
    if(neip>=it->neigh->n) neip=0;
    if((ts_int)neim<0) neim=it->neigh->n-1; /* casting is essential... If not
there the neim is never <0 !!! */
  //  fprintf(stderr,"The numbers are: %u %u\n",neip, neim);
    km=it->neigh[neim];  // We located km and kp
    kp=it->neigh[neip];
    km=it->neigh->vtx[neim];  // We located km and kp
    kp=it->neigh->vtx[neip];
   //find lm and lp (triangles that is common with k and it)
   for(i=0;i<it->tristar_no;i++){
      if(it->tristar[i]->vertex[0]==k || it->tristar[i]->vertex[1]==k || it->tristar[i]->vertex[2]==k){
         if(lm==NULL) lm=it->tristar[i];
         else lp=it->tristar[i];
      }
   }
   if(lm==NULL || lp==NULL) {
      fatal("In bondflip, cannot determine lp and lm",999);
   }
    if(km==NULL || kp==NULL){
        fatal("In bondflip, cannot determine km and kp!",999);
@@ -64,8 +77,8 @@
/* test if the membrane is wrapped too much, so that kp is nearest neighbour of
 * km. If it is true, then don't flip! */
    for(i=0;i<km->neigh_no;i++){
        if(km->neigh[i] == kp) return TS_FAIL;
    for(i=0;i<km->neigh->n;i++){
        if(km->neigh->vtx[i] == kp) return TS_FAIL;
    }
 //   fprintf(stderr,"Membrane didn't wrap too much.. Continue.\n");
/* if bond would be too long, return... */
@@ -83,7 +96,7 @@
//  for(i=0;i<kp->neigh_no;i++) oldenergy+=kp->neigh[i]->xk*kp->neigh[i]->energy;
//  for(i=0;i<km->neigh_no;i++) oldenergy+=km->neigh[i]->xk*km->neigh[i]->energy;
//  for(i=0;i<it->neigh_no;i++) oldenergy+=it->neigh[i]->xk*it->neigh[i]->energy;
/*
fprintf(stderr,"*** Naslov k=%ld\n",(long)k);
fprintf(stderr,"*** Naslov it=%ld\n",(long)it);
fprintf(stderr,"*** Naslov km=%ld\n",(long)km);
@@ -100,17 +113,17 @@
    fprintf(stderr,"kp sosed=%ld\n",(long)kp->neigh[i]);
    fprintf(stderr,"I WAS HERE! Before bondflip!\n");
*/
//    fprintf(stderr,"I WAS HERE! Before bondflip!\n");
    ts_flip_bond(k,it,km,kp, bond);
    fprintf(stderr,"I WAS HERE! Bondflip successful!\n");
//    fprintf(stderr,"I WAS HERE! Bondflip successful!\n");
/* Calculating the new energy */
  delta_energy=0;
  for(i=0;i<k->neigh_no;i++) energy_vertex(k->neigh[i]);
  for(i=0;i<kp->neigh_no;i++) energy_vertex(kp->neigh[i]);
  for(i=0;i<km->neigh_no;i++) energy_vertex(km->neigh[i]);
  for(i=0;i<it->neigh_no;i++) energy_vertex(it->neigh[i]);
  for(i=0;i<k->neigh->n;i++) energy_vertex(k->neigh->vtx[i]);
  for(i=0;i<kp->neigh->n;i++) energy_vertex(kp->neigh->vtx[i]);
  for(i=0;i<km->neigh->n;i++) energy_vertex(km->neigh->vtx[i]);
  for(i=0;i<it->neigh->n;i++) energy_vertex(it->neigh->vtx[i]);
  delta_energy+=k->xk* k->energy;
  delta_energy+=kp->xk* kp->energy;
  delta_energy+=km->xk* km->energy;
@@ -233,7 +246,7 @@
*/
if(lm2==NULL || lp1==NULL) fatal("ts_flip_bond: Cannot find triangles lm2 and lp1!",999);
/*
//DEBUG TESTING
fprintf(stderr,"1. step: lm, lm2, lp1 and lp found!\n");
fprintf(stderr,"--- Naslov lm=%ld",(long)lm);
@@ -252,7 +265,7 @@
for(i=0;i<lp->neigh_no;i++)
    fprintf(stderr,"lp sosed=%ld\n",(long)lp->neigh[i]);
// END DEBUG TESTING
*/
/*
// DEBUG TESTING!
@@ -270,25 +283,28 @@
// 2. step. We change the triangle vertices... (actual bond flip)
    for(i=0;i<3;i++) if(lm->vertex[i]== it) lm->vertex[i]= kp;
    for(i=0;i<3;i++) if(lp->vertex[i]== k) lp->vertex[i]= km;
fprintf(stderr,"2. step: actual bondflip made\n");
//fprintf(stderr,"2. step: actual bondflip made\n");
// 2a. step. If any changes in triangle calculations must be done, do it here!
//   * normals are recalculated here
    triangle_normal_vector(lp);
    triangle_normal_vector(lm);
fprintf(stderr,"2a. step: triangle normals recalculated\n");
//fprintf(stderr,"2a. step: triangle normals recalculated\n");
// 3. step. Correct neighbours in vertex_list
            vtx_remove_neighbour(k,it);
            vertex_list_remove_vtx(k->neigh, it);
            vertex_list_remove_vtx(it->neigh, k);
   //vtx_remove_neighbour(k,it);
//            vtx_remove_neighbour(it,k);
fprintf(stderr,"3. step (PROGRESS): removed k and it neighbours\n");
//fprintf(stderr,"3. step (PROGRESS): removed k and it neighbours\n");
    
            //Tukaj pa nastopi tezava... Kam dodati soseda?
            vtx_insert_neighbour(km,kp,k);
            vtx_insert_neighbour(kp,km,it);
//            vertex_add_neighbour(km,kp); //pazi na vrstni red.
//            vertex_add_neighbour(kp,km);
fprintf(stderr,"3. step: vertex neighbours corrected\n");
//            vtx_insert_neighbour(km,kp,k);
//            vtx_insert_neighbour(kp,km,it);
            vtx_add_neighbour(km,kp); //pazi na vrstni red.
            vtx_add_neighbour(kp,km);
//fprintf(stderr,"3. step: vertex neighbours corrected\n");
// 3a. step. If any changes to ts_vertex, do it here!
//   bond_length calculatons not required for it is done in energy.c
@@ -302,7 +318,7 @@
// 5. step. Correct neighbouring triangles 
   
    triangle_remove_neighbour(lp,lp1);
   // fprintf(stderr,".\n");
  //  fprintf(stderr,".\n");
    triangle_remove_neighbour(lp1,lp);
  //  fprintf(stderr,".\n");
    triangle_remove_neighbour(lm,lm2);