Nucleus translates with the vesicle. Dump and restore includes optional <nucleus> tag within <trisurf> tag if the nucleus is present at all.
| | |
| | | vesicle->filament_list->poly[i]->vlist->vtx[j]->z-=vesicle->cm[2]; |
| | | } |
| | | } |
| | | //move nucleus for the same vector as we moved vesicle |
| | | vesicle->nucleus_center[0]-=vesicle->cm[0]; |
| | | vesicle->nucleus_center[1]-=vesicle->cm[1]; |
| | | vesicle->nucleus_center[2]-=vesicle->cm[2]; |
| | | |
| | | vesicle->cm[0]=0.0; |
| | | vesicle->cm[1]=0.0; |
| | |
| | | ts_double R_nucleusX; |
| | | ts_double R_nucleusY; |
| | | ts_double R_nucleusZ; |
| | | ts_double nucleus_center[3]; |
| | | ts_double area; |
| | | } ts_vesicle; |
| | | |
| | |
| | | } |
| | | fclose(fd); |
| | | start_iteration++; |
| | | printf("nucleus coords: %.17e %.17e %.17e\n",vesicle->nucleus_center[0], vesicle->nucleus_center[1], vesicle->nucleus_center[2]); |
| | | } |
| | | else |
| | | ts_fprintf(stdout,"No .status file. The iteration count will start from 0"); |
| | |
| | | if ((!xmlStrcmp(child->name, (const xmlChar *)"tristar"))){ |
| | | parseTrisurfTristar(vesicle, doc, child); |
| | | } |
| | | if ((!xmlStrcmp(child->name, (const xmlChar *)"nucleus"))){ |
| | | parseTrisurfNucleus(vesicle, doc, child); |
| | | } |
| | | |
| | | child = child->next; |
| | | } |
| | |
| | | |
| | | |
| | | /* Low level tags parsers */ |
| | | ts_bool parseTrisurfNucleus(ts_vesicle *vesicle, xmlDocPtr doc, xmlNodePtr cur){ |
| | | xmlChar *coords = xmlNodeListGetString(doc, cur->xmlChildrenNode, 1); |
| | | char *n=(char *)coords; |
| | | char *token=strtok(n," "); |
| | | ts_uint i; |
| | | for(i=0;i<3;i++){ |
| | | vesicle->nucleus_center[i]=atof(token); |
| | | token=strtok(NULL," "); |
| | | } |
| | | xmlFree(coords); |
| | | return TS_SUCCESS; |
| | | } |
| | | |
| | | ts_bool parseTrisurfVtxn(ts_vertex_list *vlist, xmlDocPtr doc, xmlNodePtr cur){ |
| | | |
| | |
| | | ts_bool parseTrisurfTristar(ts_vesicle *vesicle, xmlDocPtr doc, xmlNodePtr cur); |
| | | ts_bool parseXMLVertexPosition(ts_vesicle *vesicle,xmlDocPtr doc, xmlNodePtr cur); |
| | | ts_bool parseXMLBonds(ts_vesicle *vesicle,xmlDocPtr doc, xmlNodePtr cur); |
| | | |
| | | ts_bool parseTrisurfNucleus(ts_vesicle *vesicle, xmlDocPtr doc, xmlNodePtr cur); |
| | | #endif |
| | |
| | | xml_trisurf_tria_neigh(data,vesicle->tlist); |
| | | xml_trisurf_vtx_neigh(data,vesicle->vlist); |
| | | xml_trisurf_vtx_tristar(data,vesicle->vlist); |
| | | xml_trisurf_nucleus(data,vesicle); |
| | | #ifdef COMPRESSION |
| | | char *compressed; |
| | | ts_uint nbytes=ts_compress_string64(data->string, data->beg-1, &compressed); //suppress null character at the end with by substracting 1 |
| | |
| | | return TS_SUCCESS; |
| | | } |
| | | |
| | | |
| | | ts_bool xml_trisurf_nucleus(ts_string *data, ts_vesicle* vesicle){ |
| | | if(vesicle->R_nucleus>0.0 || (vesicle->R_nucleusX>0.0 && vesicle->R_nucleusY>0.0 && vesicle->R_nucleusZ>0.0)){ |
| | | ts_sprintf(data,"<nucleus>%.17e %.17e %.7e</nucleus>",vesicle->nucleus_center[0], vesicle->nucleus_center[1], vesicle->nucleus_center[2]); |
| | | } |
| | | return TS_SUCCESS; |
| | | } |
| | | |
| | | |
| | | /* UTILITIES */ |
| | |
| | | ts_bool xml_trisurf_tria_neigh(ts_string *data, ts_triangle_list *tlist); |
| | | ts_bool xml_trisurf_vtx_neigh(ts_string *data, ts_vertex_list *vlist); |
| | | ts_bool xml_trisurf_vtx_tristar(ts_string *data, ts_vertex_list *vlist); |
| | | |
| | | ts_bool xml_trisurf_nucleus(ts_string *data, ts_vesicle* vesicle); |
| | | /* UTILITIES */ |
| | | char *base64_encode(const unsigned char *data, size_t input_length, size_t *output_length); |
| | | unsigned char *base64_decode(const char *data, size_t input_length, size_t *output_length); |