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