Trisurf Monte Carlo simulator
Samo Penic
2014-03-21 42641cde38cfd1d27a2031604cc1397b5bd2849b
commit | author | age
d7639a 1 #ifndef _IO_H
SP 2 #define _IO_H
3
083e03 4 /** @ Global variables for I/O operations like filenames etc. */
SP 5 /*static char mastername[1024];
6 static char prefixname[1024];
7 static ts_bool restore=0;
8 static char tape[1024]; */
9 int force_from_tape;
10
8a6614 11
SP 12 typedef struct {
13     long int nshell;
14     long int ncxmax;
15     long int ncymax;
16     long int nczmax;
17     long int npoly;
18     long int nmono;
58230a 19     long int nfil;
M 20     long int nfono;
21     long int R_nucleus;
8a6614 22     long int pswitch;
SP 23         char *multiprocessing;
24        long int brezveze0;
25         long int brezveze1;
26         long int brezveze2;
27         ts_double xk0;
28     ts_double dmax;
29     ts_double stepsize;
30     ts_double kspring;
b30f45 31     ts_double xi;
8a6614 32     ts_double pressure;
SP 33     long int iterations;
34     long int inititer;
35     long int mcsweeps;
36     long int quiet;
37 } ts_tape;
38
39 typedef struct{
40     ts_int force_from_tape;
41     ts_int reset_iteration_count;
3f5c83 42     char path[1024]; //path where all files should be added
SP 43     char output_fullfilename[1024]; //name of the master file
44     char dump_fullfilename[1024]; //name of the dump file
45     char tape_fullfilename[1024]; //name of the tape file
8a6614 46 } ts_args;
SP 47
48 ts_args command_line_args;
49
083e03 50 ts_bool parse_args(int argc, char **argv);
SP 51
52
53
d7639a 54 /** @brief Prints the position of vertices for the whole list
SP 55  *  
56  *  The function is meant more or less as a debug tool, but can be used in production
57  *  environment aswell.
58  *  the output is in form of idx: x y z
59  *      @param *vlist is a structure holding information on vertex list.
60  *    @returns TS_SUCCESS on successful execution, TS_FAIL otherwise.
61 */
62
63 ts_bool print_vertex_list(ts_vertex_list *vlist);
64
65 /** @brief Prints the neighbours of all the vertices
66  *  
67  *  The function is meant more or less as a debug tool, but can be used in production
68  *  environment aswell.
69  *  the output is in form of idx(number of neighbours): (x1,y1,z1) (x2,y2,z2) ...
70  *      @param *vlist is a structure holding information on vertex list.
71  *    @returns TS_SUCCESS on successful execution, TS_FAIL otherwise.
72 */
73 ts_bool print_vertex_neighbours(ts_vertex_list *vlist);
74
75
76 /** @brief Function outputs the vetex list file to comply to old fortran format
77  *  
78  *      @param *vlist is a list of vertices
79  *      @param *filename is a name of the output file to be created (note that if the file already
80  *  exists it will be overwritten.
81  */
82 ts_bool write_vertex_fcompat_file(ts_vertex_list *vlist,ts_char *filename);
83 ts_bool fprint_vertex_list(FILE *fh,ts_vertex_list *vlist);
84 ts_bool fprint_tristar(FILE *fh, ts_vesicle *vesicle);
85 ts_bool fprint_triangle_list(FILE *fh, ts_vesicle *vesicle);
86 ts_bool fprint_vertex_data(FILE *fh,ts_vertex_list *vlist);
87 ts_bool fprint_bonds(FILE *fh,ts_vesicle *vesicle);
88 ts_bool write_dout_fcompat_file(ts_vesicle *vesicle, ts_char *filename);
89 ts_bool read_tape_fcompat_file(ts_vesicle *vesicle, ts_char *filename);
90
91
92 /** @brief Outputs file in vtk format, compatible with paraview.
93  *
94  *    @param *vlist is a list of vertices
95  *    @param *filename is a name of the output file. If exists, it will be overwritten
96  *    @param *text is a description line (max. 255 characters) to be included in the file
97  */
98 ts_bool write_vertex_vtk_file(ts_vesicle *vesicle,ts_char *filename, ts_char *text);
a6b1b5 99 ts_bool write_vertex_xml_file(ts_vesicle *vesicle, ts_uint timestepno);
SP 100 ts_bool write_master_xml_file(ts_char *filename);
1ab449 101 ts_tape *parsetape(char *filename);
SP 102 ts_bool tape_free(ts_tape *tape);
d7639a 103
1ab449 104 ts_bool dump_state(ts_vesicle *vesicle, ts_uint iteration);
SP 105 ts_vesicle *restore_state(ts_uint *iteration);
d7639a 106 #endif