Trisurf Monte Carlo simulator
Samo Penic
2019-02-28 b5cd8cc72380e9ca576ec942753391df85a2a436
commit | author | age
7f6076 1 /* vim: set ts=4 sts=4 sw=4 noet : */
d7639a 2 #include<stdio.h>
SP 3 #include<math.h>
2b14da 4 #include<stdlib.h>
d7639a 5 #include "general.h"
SP 6 #include "vertex.h"
a10dd5 7 #include "bond.h"
a2a676 8 #include "triangle.h"
bb77ca 9 #include "cell.h"
7958e9 10 #include "vesicle.h"
a6b1b5 11 #include "io.h"
7958e9 12 #include "initial_distribution.h"
dac2e5 13 #include "frame.h"
aec47d 14 #include "timestep.h"
8db569 15 #include "poly.h"
dc77e8 16 #include "sh.h"
459ff9 17 #include "shcomplex.h"
ee84bd 18 #include "dumpstate.h"
8c1bb1 19 #include "restore.h"
eb7d7e 20 #include "plugins.h"
6e42ef 21 #include <fcntl.h>
d7639a 22 /** Entrance function to the program
SP 23   * @param argv is a number of parameters used in program call (including the program name
24   * @param argc is a pointer to strings (character arrays) which holds the arguments
25   * @returns returns 0 on success, any other number on fail.
26 */
eb7d7e 27 #include <string.h>
d7639a 28 int main(int argv, char *argc[]){
eb7d7e 29     ts_char *plugin0 = (ts_char *)calloc(255,sizeof(ts_char));
51b4f0 30     ts_char *plugin1 = (ts_char *)calloc(255,sizeof(ts_char));
b5cd8c 31     ts_char *plugin2 = (ts_char *)calloc(255,sizeof(ts_char));
74bf1e 32     strcpy(plugin0,"/home/samo/programiranje/trisurf-ng/src/plugins/.libs/demoplugin.so");
51b4f0 33     strcpy(plugin1,"/home/samo/programiranje/trisurf-ng/src/plugins/.libs/vmdefaulthardconstraints.so");
b5cd8c 34     strcpy(plugin2,"/home/samo/programiranje/trisurf-ng/src/plugins/.libs/plane_confinement.so");
SP 35     ts_char **plugins=(ts_char **)calloc(3,sizeof(ts_char *));
eb7d7e 36     *plugins=plugin0;
51b4f0 37     plugins[1]=plugin1;
b5cd8c 38     plugins[2]=plugin2;
SP 39     ts_plugin_list *plist=init_plugin_list(plugins,3);
ca9f26 40     //printf("%s", plist->chain->at_start->next->plugin->filename);
SP 41     //ts_fprintf(stdout, "TRISURF in PRVI PLUGIN %s\n", plist->plugin[0]->details->name);
1ab449 42     ts_vesicle *vesicle;
SP 43     ts_tape *tape;
8a6614 44     ts_uint start_iteration=0;
152052 45     force_from_tape=0;
fab2ad 46     /* Area and volume for constant area and constant volume are initialized to be zero */
SP 47     A0=0;
48     V0=0;
6e42ef 49     /* create lock file */
SP 50     createPidFile("ts_trisurf",".lock",0);
8a6614 51     parse_args(argv,argc); // sets global variable command_line_args (defined in io.h)
7f6076 52     ts_fprintf(stdout,"TRISURF-NG v. %s, compiled on: %s %s.\n", TS_VERSION, __DATE__, __TIME__);
SP 53     ts_fprintf(stdout,"Programming done by: Samo Penic and Miha Fosnaric\n");
54     ts_fprintf(stdout,"Released under terms of GPLv3\n");
8a6614 55     ts_fprintf(stdout,"Starting program...\n\n");
51b4f0 56     
SP 57 /* Entry point for plugin function at_start() */
ca9f26 58     ts_plugin_chain *ptr=plist->chain->at_start;
SP 59     while(ptr!=NULL){
60         ptr->plugin->function->at_start(argv,argc);
61         ptr=ptr->next;
51b4f0 62     }
ab798b 63
ee84bd 64     if(command_line_args.dump_from_vtk[0]!=0){
SP 65         ts_fprintf(stdout,"************************************************\n");
57f830 66         ts_fprintf(stdout,"**** Restoring vesicle from VTK points list ****\n");
ee84bd 67         ts_fprintf(stdout,"************************************************\n\n");
ab798b 68         vesicle = parseDump(command_line_args.dump_from_vtk);
SP 69         tape = vesicle->tape;
bb2074 70         int arguments_no;
3d0247 71         FILE *fd=fopen(".status","r");
SP 72         if(fd!=NULL){
bb2074 73             arguments_no=fscanf(fd,"%u", &start_iteration);
SP 74             if(arguments_no==0){
a17e91 75                 ts_fprintf(stdout,"No information of start iteration in .status file\n");
bb2074 76                 }
3d0247 77             fclose(fd);
a17e91 78             start_iteration++; 
3d0247 79         }
bb2074 80         else
a17e91 81             ts_fprintf(stdout,"No .status file. The iteration count will start from 0\n");
ee84bd 82     }
SP 83     else if(command_line_args.force_from_tape){
8a6614 84         ts_fprintf(stdout,"************************************************\n");
SP 85         ts_fprintf(stdout,"**** Generating initial geometry from tape *****\n");
86         ts_fprintf(stdout,"************************************************\n\n");
267db5 87         tape=parsetape(command_line_args.tape_fullfilename);
8a6614 88         vesicle=create_vesicle_from_tape(tape);
SP 89     } else {
083e03 90
8a6614 91         ts_fprintf(stdout,"**********************************************************************\n");
SP 92         ts_fprintf(stdout,"**** Recreating vesicle from dump file and continuing simulation *****\n");
93         ts_fprintf(stdout,"**********************************************************************\n\n");
267db5 94         tape=parsetape(command_line_args.tape_fullfilename);
8a6614 95         vesicle=restore_state(&start_iteration);
3f5c83 96         if(vesicle==NULL){
SP 97             ts_fprintf(stderr, "Dump file does not exist or is not a regular file! Did you mean to invoke trisurf with --force-from-tape option?\n\n");
98             return 1;
99         }
152052 100         // nove vrednosti iz tapea...
d9cb01 101         vesicle->bending_rigidity=tape->xk0;
M 102         vtx_set_global_values(vesicle);
bc9583 103         vesicle->pswitch =tape->pswitch;
152052 104         vesicle->pressure=tape->pressure;
2dcc65 105         vesicle->dmax=tape->dmax*tape->dmax;
bcf455 106         poly_assign_filament_xi(vesicle,tape);
2b14da 107         free(vesicle->tape);
9166cb 108         vesicle->tape=tape;
ea1cce 109         vesicle->clist->dmin_interspecies = tape->dmin_interspecies*tape->dmin_interspecies;
47a7ac 110
SP 111
112
632960 113         /* spherical harmonics */
SP 114         if(tape->shc>0){
459ff9 115             vesicle->sphHarmonics=complex_sph_init(vesicle->vlist,tape->shc);
632960 116         }
SP 117         else {
118             vesicle->sphHarmonics=NULL;
119         }
d9cb01 120
144784 121         if(command_line_args.reset_iteration_count) start_iteration=tape->inititer;
8a6614 122         else start_iteration++;
083e03 123
8a6614 124         if(start_iteration>=tape->iterations){
SP 125             ts_fprintf(stdout, "Simulation already completed. if you want to rerun it try with --force-from-tape or --reset-iteration-count\n\n");
126             return 0;
127         }
a752b5 128
SP 129     /* if requested in tape, we can have smaller number of polymeres attached to membrane than the number of polymeres in dump file */
130         if(vesicle->tape->npoly != vesicle->poly_list->n){
131
132         ts_fprintf(stdout,"(INFO) the number of polymeres attached to membrane in tape is different than a number of polymeres in dump file!\n");
133         if(vesicle->tape->npoly > vesicle->poly_list->n){
134             ts_fprintf(stdout,"(INFO) It is possible to decrease the number of polymeres on the membrane, but it is not allowed to increase its number. The maximal allowed number in tape is %d The execution of program will terminate!\n",vesicle->poly_list->n);
135             fatal("Terminating due to increase of number of polymeres",1);
136         } else {
137             remove_random_polymeres(vesicle->poly_list, vesicle->poly_list->n - vesicle->tape->npoly);
138             ts_fprintf(stdout,"(INFO)\n(INFO) The new number of polymeres from tape is %d.\n\n",vesicle->poly_list->n);
139
140         }
141         }
8a6614 142     }
SP 143
51b4f0 144     vesicle->plist=plist;
SP 145 /* Entry point for plugin after_vesicle_init() function */
ca9f26 146     ptr=plist->chain->after_vesicle_init;
SP 147     while(ptr!=NULL){
148         ptr->plugin->function->after_vesicle_init(vesicle);
149         ptr=ptr->next;
51b4f0 150     }
ca9f26 151
8a6614 152     run_simulation(vesicle, tape->mcsweeps, tape->inititer, tape->iterations, start_iteration);
267db5 153     write_master_xml_file(command_line_args.output_fullfilename);
8a6614 154     write_dout_fcompat_file(vesicle,"dout");
ca9f26 155 /* Entry point for plugin cleanup() function */
SP 156     ptr=plist->chain->cleanup;
157     while(ptr!=NULL){
158         ptr->plugin->function->cleanup();
159         ptr=ptr->next;
160     }
161
162
8a6614 163     vesicle_free(vesicle);
SP 164     tape_free(tape);
165     return 0; //program finished perfectly ok. We return 0.
d7639a 166