From 17fe35ccc428e18dd226e07d5517c4816ef6be44 Mon Sep 17 00:00:00 2001 From: Samo Penic <samo.penic@gmail.com> Date: Mon, 19 Apr 2021 12:23:07 +0000 Subject: [PATCH] Work done previously --- src/initial_distribution.c | 81 ++++++++++++++++++++++++++++++++-------- 1 files changed, 65 insertions(+), 16 deletions(-) diff --git a/src/initial_distribution.c b/src/initial_distribution.c index 7d5647c..bed8123 100644 --- a/src/initial_distribution.c +++ b/src/initial_distribution.c @@ -1,3 +1,4 @@ +/* vim: set ts=4 sts=4 sw=4 noet : */ #include<stdlib.h> #include<math.h> #include<stdio.h> @@ -12,6 +13,7 @@ #include "poly.h" #include "io.h" #include "sh.h" +#include "shcomplex.h" ts_vesicle *initial_distribution_dipyramid(ts_uint nshell, ts_uint ncmax1, ts_uint ncmax2, ts_uint ncmax3, ts_double stepsize){ ts_fprintf(stdout,"Starting initial_distribution on vesicle with %u shells!...\n",nshell); @@ -31,6 +33,10 @@ retval = mean_curvature_and_energy(vesicle); ts_fprintf(stdout,"initial_distribution finished!\n"); if(retval); +// ts_fprintf(stdout,"%e %e %e\n", vesicle->vlist->vtx[0]->x,vesicle->vlist->vtx[0]->y, vesicle->vlist->vtx[0]->z); +// for(int i=0;i<vesicle->vlist->vtx[0]->neigh_no; i++){ +// ts_fprintf(stdout,"%e %e %e\n", vesicle->vlist->vtx[0]->neigh[i]->x,vesicle->vlist->vtx[0]->neigh[i]->y, vesicle->vlist->vtx[0]->neigh[i]->z); +// } return vesicle; } @@ -38,16 +44,28 @@ ts_vesicle *create_vesicle_from_tape(ts_tape *tape){ ts_vesicle *vesicle; - ts_vertex *vtx; vesicle=initial_distribution_dipyramid(tape->nshell,tape->ncxmax,tape->ncymax,tape->nczmax,tape->stepsize); - // Nucleus: - vesicle->R_nucleus=tape->R_nucleus*tape->R_nucleus; + vesicle->tape=tape; + vesicle->clist->dmin_interspecies = tape->dmin_interspecies*tape->dmin_interspecies; + vesicle->poly_list=init_poly_list(tape->npoly,tape->nmono, vesicle->vlist, vesicle); + set_vesicle_values_from_tape(vesicle); + initial_population_with_c0(vesicle,tape); + return vesicle; +} +ts_bool set_vesicle_values_from_tape(ts_vesicle *vesicle){ + // Nucleus: + ts_vertex *vtx; + ts_tape *tape=vesicle->tape; + vesicle->R_nucleus=tape->R_nucleus*tape->R_nucleus; + vesicle->R_nucleusX=tape->R_nucleusX*tape->R_nucleusX; + vesicle->R_nucleusY=tape->R_nucleusY*tape->R_nucleusY; + vesicle->R_nucleusZ=tape->R_nucleusZ*tape->R_nucleusZ; vesicle->clist->dmin_interspecies = tape->dmin_interspecies*tape->dmin_interspecies; //Initialize grafted polymers (brush): - vesicle->poly_list=init_poly_list(tape->npoly,tape->nmono, vesicle->vlist, vesicle); + //vesicle->poly_list=init_poly_list(tape->npoly,tape->nmono, vesicle->vlist, vesicle); vesicle->spring_constant=tape->kspring; poly_assign_spring_const(vesicle); @@ -84,22 +102,53 @@ vesicle->dmax=tape->dmax*tape->dmax; /* dmax^2 in the vesicle dmax variable */ vesicle->bending_rigidity=tape->xk0; vtx_set_global_values(vesicle); /* make xk0 default value for every vertex */ - ts_fprintf(stdout, "Tape setting: xk0=%e\n",tape->xk0); +// ts_fprintf(stdout, "Tape setting: xk0=%e\n",tape->xk0); vesicle->stepsize=tape->stepsize; vesicle->clist->ncmax[0]=tape->ncxmax; vesicle->clist->ncmax[1]=tape->ncymax; vesicle->clist->ncmax[2]=tape->nczmax; - vesicle->clist->max_occupancy=8; /* hard coded max occupancy? */ + vesicle->clist->max_occupancy=16; /* hard coded max occupancy? */ vesicle->pressure= tape->pressure; vesicle->pswitch=tape->pswitch; - vesicle->sphHarmonics=sph_init(vesicle->vlist,tape->shc); - return vesicle; + if(tape->shc>0){ + vesicle->sphHarmonics=complex_sph_init(vesicle->vlist,tape->shc); + } + else { + vesicle->sphHarmonics=NULL; + } + + vesicle->tlist->a0=sqrt(3)/4*pow((vesicle->tape->dmax+1.0)/2.0,2); + return TS_SUCCESS; } - +ts_bool initial_population_with_c0(ts_vesicle *vesicle, ts_tape *tape){ + int rndvtx,i,j; + if(tape->number_of_vertices_with_c0>0){ +// ts_fprintf(stderr,"Setting values for spontaneous curvature as defined in tape\n"); + j=0; + for(i=0;i<tape->number_of_vertices_with_c0;i++){ + rndvtx=rand() % vesicle->vlist->n; + if(fabs(vesicle->vlist->vtx[rndvtx]->c-tape->c0)<1e-15){ + j++; + i--; + if(j>10*vesicle->vlist->n){ + fatal("cannot populate vesicle with vertices with spontaneous curvature. Too many spontaneous curvature vertices?",100); + } + continue; + } + vesicle->vlist->vtx[rndvtx]->c=tape->c0; + } + mean_curvature_and_energy(vesicle); + if(fabs(tape->w)>1e-16){ //if nonzero energy +// ts_fprintf(stderr,"Setting attraction between vertices with spontaneous curvature\n"); + sweep_attraction_bond_energy(vesicle); + } + } + return TS_SUCCESS; +} ts_bool pentagonal_dipyramid_vertex_distribution(ts_vertex_list *vlist){ @@ -110,15 +159,15 @@ const ts_double c2= cos(4.0*M_PI/5.0); /* Calculates projection lenght of an edge bond to pentagram plane */ - const ts_double xl0=A0/(2.0*sin(M_PI/5.0)); + const ts_double xl0=DEF_A0/(2.0*sin(M_PI/5.0)); #ifdef TS_DOUBLE_DOUBLE - const ts_double z0=sqrt(pow(A0,2)-pow(xl0,2)); + const ts_double z0=sqrt(pow(DEF_A0,2)-pow(xl0,2)); #endif #ifdef TS_DOUBLE_FLOAT - const ts_double z0=sqrtf(powf(A0,2)-powf(xl0,2)); + const ts_double z0=sqrtf(powf(DEF_A0,2)-powf(xl0,2)); #endif #ifdef TS_DOUBLE_LONGDOUBLE - const ts_double z0=sqrtl(powl(A0,2)-powl(xl0,2)); + const ts_double z0=sqrtl(powl(DEF_A0,2)-powl(xl0,2)); #endif // const z0=sqrt(A0*A0 -xl0*xl0); /* I could use pow function but if pow is used make a check on the float type. If float then powf, if long double use powl */ @@ -210,7 +259,7 @@ for(i=1;i<=vlist->n;i++){ for(j=1;j<=vlist->n;j++){ dist2=vtx_distance_sq(vtx[i],vtx[j]); - if( (dist2>eps) && (dist2<(A0*A0+eps))){ + if( (dist2>eps) && (dist2<(DEF_A0*DEF_A0+eps))){ //if it is close enough, but not too much close (solves problem of comparing when i==j) vtx_add_neighbour(vtx[i],vtx[j]); } @@ -243,7 +292,7 @@ dist2=vtx_distance_sq(vtx[i]->neigh[j-1],vtx[i]->neigh[jj-1]); direct=vtx_direct(vtx[i],vtx[i]->neigh[j-1],vtx[i]->neigh[jj-1]); // TODO: check if fabs can be used with all floating point types!! - if( (fabs(dist2-A0*A0)<=eps) && (direct>0.0) && (j!=jjj) ){ + if( (fabs(dist2-DEF_A0*DEF_A0)<=eps) && (direct>0.0) && (j!=jjj) ){ vtx_add_cneighbour(blist,tvtx[k],tvtx[vtx[i]->neigh[j-1]->idx+1]); jjj=jj; jj=j; @@ -309,7 +358,7 @@ dist=vtx_distance_sq(vtx[i]->neigh[j-1],vtx[i]->neigh[jj-1]); direct=vtx_direct(vtx[i],vtx[i]->neigh[j-1],vtx[i]->neigh[jj-1]); // TODO: same as above - if(fabs(dist-A0*A0)<=eps && direct < 0.0 && vtx[i]->neigh[j-1]->idx+1 > i && vtx[i]->neigh[jj-1]->idx+1 >i){ + if(fabs(dist-DEF_A0*DEF_A0)<=eps && direct < 0.0 && vtx[i]->neigh[j-1]->idx+1 > i && vtx[i]->neigh[jj-1]->idx+1 >i){ triangle_add(tlist,vtx[i],vtx[i]->neigh[j-1],vtx[i]->neigh[jj-1]); } } -- Gitblit v1.9.3