Trisurf Monte Carlo simulator
Samo Penic
2019-04-23 13f45e61241e43d709df10228b946ed9870e8ebb
commit | author | age
7f6076 1 /* vim: set ts=4 sts=4 sw=4 noet : */
d7639a 2 #ifndef _GENERAL_H
SP 3 #define _GENERAL_H
4
5 #include<stdarg.h>
7958e9 6 #include<stdio.h>
459ff9 7 #include<gsl/gsl_complex.h>
d7639a 8 /* @brief This is a header file, defining general constants and structures.
SP 9   * @file header.h
10   * @author Samo Penic
11   * @date 5.3.2001
311301 12   * 
d7639a 13   * Header file for general inclusion in all the code, defining data structures
SP 14   * and general constans. All datatypes used in the code is also defined here.
15   *
311301 16   * Miha: branch trisurf-polyel
d7639a 17   */
SP 18
19 /* Defines */
20 /** @brief Return value of type bz_bool that indiceates successful function finish 
21   *
22   * Function usualy return some value, which are the result of certain operation. Functions that don't
23   * return any parameters can return value, that indicates if the function call finished successfully.
24   * In case of successful function run, the functions should return TS_SUCCESS to the caller. This define
25   * is set here to get uniformity among all the functions used in program.
26   *
27   * Example of usage:
28   *        ts_boot somefunction(ts_int param1, ....){
29   *            ...
30   *            return TS_SUCCESS;
31   *        }
32   */
33 #define TS_SUCCESS 0
34
35 /** @brief Return value of type bz_bool that indicates unsuccessful function finish 
36   *
37   * Function usualy return some value, which are the result of certain operation. Functions that don't
38   * return any parameters can return value, that indicates if the function call finished successfully.
39   * In case of unsuccessful function run, the functions should return TS_FAIL to the caller. This define
40   * is set here to get uniformity among all the functions used in program.
41   *
42   * Example of usage:
43   *
44   *        ts_boot somefunction(ts_int param1, ....){
45   *            ...
46   *            return TS_FAIL;
47   *        }
48   */
49 #define TS_FAIL 1
50
51 /* CONSTANTS */
52
ea1cce 53 #define TS_ID_FILAMENT 1
M 54
d7639a 55 /* DATA TYPES */
SP 56 /** @brief Sets the default datatype for ts_double
57  *
58  * Requred for some functions to work, like "pow" from math.h. If ts_double is defined as
59  * float program must run with "powf". Where type dependant function is used it checks this
60  * define directive to decide which version to compile in. Available options
61  *
62  *    TS_DOUBLE_FLOAT
63  *    TS_DOUBLE_DOUBLE
64  *    TS_DOUBLE_LONGDOUBLE
65 */
66 #define TS_DOUBLE_DOUBLE
67
68 /** For the purpose of greater flexibility all data types used in the program
69  *  shouldn't use standard C types, but should use types defined here.
70  *    ts_int (uses int)
71  */
72 typedef int ts_int;
73 /** For the purpose of greater flexibility all data types used in the program
74  *  shouldn't use standard C types, but should use types defined here.
75  *    ts_uint (uses unsigned int)
76  */
77 typedef unsigned int ts_uint;
78 /** For the purpose of greater flexibility all data types used in the program
79  *  shouldn't use standard C types, but should use types defined here.
80  *    ts_long (uses long)
81  */
82 typedef long ts_long;
83 /** For the purpose of greater flexibility all data types used in the program
84  *  shouldn't use standard C types, but should use types defined here.
85  *    ts_ulong (uses unsigned long)
86  */
87 typedef unsigned long ts_ulong;
88 /** For the purpose of greater flexibility all data types used in the program
89  *  shouldn't use standard C types, but should use types defined here.
90  *    ts_float (uses float)
91  */
92 typedef float ts_float;
93 /** For the purpose of greater flexibility all data types used in the program
94  *  shouldn't use standard C types, but should use types defined here.
95  *    ts_double (uses double)
96  */
97 typedef double ts_double;
98 /** For the purpose of greater flexibility all data types used in the program
99  *  shouldn't use standard C types, but should use types defined here.
100  *    ts_char (uses char)
101  */
102 typedef char ts_char;
103 /** For the purpose of greater flexibility all data types used in the program
104  *  shouldn't use standard C types, but should use types defined here.
105  *    ts_uchar (uses unsigned char)
106  */
107 typedef unsigned char ts_uchar;
108 /** For the purpose of greater flexibility all data types used in the program
109  *  shouldn't use standard C types, but should use types defined here.
110  *    ts_bool (uses char)
111  */
112 typedef char ts_bool;
113
114
115 /* STRUCTURES */
116
523bf1 117
SP 118 /** @brief Data structure for keeping the coordinates in selected coordinate
119  * system
120  */
121 #define TS_COORD_CARTESIAN 0
122 #define TS_COORD_SPHERICAL 1
123 #define TS_COORD_CYLINDRICAL 2
124
125 typedef struct {
126     ts_double e1;
127     ts_double e2;
128     ts_double e3;
129     ts_uint coord_type;
130 } ts_coord;
131
d7639a 132 /** @brief Data structure of all data connected to a vertex
SP 133  *
8f6a69 134  *  ts_vertex holds the data for one single point (bead, vertex). To understand how to use it
d7639a 135  *  here is a detailed description of the fields in the data structure. */
8f6a69 136 struct ts_vertex {
SP 137         ts_uint idx;
a10dd5 138         ts_double x; /**< The x coordinate of vertex. */
d7639a 139         ts_double y; /**< The y coordinate of vertex. */
SP 140         ts_double z; /**< The z coordinate of vertex. */
141         ts_uint neigh_no; /**< The number of neighbours. */
a10dd5 142         struct ts_vertex **neigh; /**< The pointer that holds neigh_no pointers to this structure. */
SP 143         ts_double *bond_length; /**< Obsolete! The bond lenght is moved to ts_bond */
144         ts_double *bond_length_dual; /**< Obsolete! Bond length in dual lattice is moved to ts_bond! */
d7639a 145         ts_double curvature;
SP 146         ts_double energy;
147         ts_double energy_h;
148         ts_uint tristar_no;
a10dd5 149         struct ts_triangle **tristar; /**< The list of triangles this vertex belongs to. This is an array of pointers to ts_triangle structure of tristar_no length */
SP 150         ts_uint bond_no;
151         struct ts_bond **bond; /**< Array of pointers of lenght bond_no that stores information on bonds. */
152         struct ts_cell *cell; /**< Which cell do we belong to? */
d7639a 153         ts_double xk;
SP 154         ts_double c;
155         ts_uint id;
523bf1 156         ts_double projArea;
SP 157         ts_double relR;
158         ts_double solAngle;
759169 159         struct ts_poly *grafted_poly;
SP 160         struct ts_cluster *cluster;
13f45e 161     ts_uint fixed;
737714 162 };
d7639a 163 typedef struct ts_vertex ts_vertex;
SP 164
73f967 165 typedef struct {
SP 166     ts_uint n;
a10dd5 167     ts_vertex **vtx;
73f967 168
SP 169 } ts_vertex_list;
170
e016c4 171 struct ts_bond {
fedf2b 172         ts_uint idx;
d7639a 173     ts_vertex *vtx1;
SP 174     ts_vertex *vtx2;
58230a 175         ts_double bond_length;
M 176         ts_double bond_length_dual;
177     ts_bool tainted; //TODO: remove
fedf2b 178     ts_double energy;
58230a 179     ts_double x,y,z;
a10dd5 180 };
SP 181 typedef struct ts_bond ts_bond;
182
183 struct ts_bond_list {
184     ts_uint n;
185     ts_bond **bond;
186 };
187 typedef struct ts_bond_list ts_bond_list;
188
41a035 189 struct ts_triangle {
SP 190     ts_uint idx;
d7639a 191     ts_vertex *vertex[3];
SP 192     ts_uint neigh_no;
193     struct ts_triangle **neigh;
194     ts_double xnorm;
195     ts_double ynorm;
196     ts_double znorm;
523bf1 197     ts_double area; // firstly needed for sh.c
c9d07c 198     ts_double volume; // firstly needed for sh.c
2ae815 199     ts_double energy;
a10dd5 200 };
d7639a 201 typedef struct ts_triangle ts_triangle;
a10dd5 202
SP 203 struct ts_triangle_list{
204     ts_uint n;
7ec6fb 205     ts_double a0;
a10dd5 206     ts_triangle **tria;
SP 207 };
a2a676 208 typedef struct ts_triangle_list ts_triangle_list;
d7639a 209
SP 210
bb77ca 211 typedef struct ts_cell {
SP 212     ts_uint idx;
34d3de 213     ts_vertex **vertex;
SP 214     ts_uint nvertex;
bb77ca 215 } ts_cell; 
SP 216
217 typedef struct ts_cell_list{
218     ts_uint ncmax[3];
219     ts_uint cellno;
220     ts_cell **cell;
d7639a 221     ts_double dcell;
SP 222     ts_double shift;
223     ts_double max_occupancy;
ea1cce 224     ts_double dmin_interspecies;
bb77ca 225 } ts_cell_list;
SP 226
227
228 typedef struct {
523bf1 229     ts_uint l;
SP 230     ts_double **ulm;
459ff9 231     gsl_complex **ulmComplex;
262607 232     ts_double **sumUlm2;
SP 233     ts_uint N;
621830 234     ts_double **co;
eb8605 235     ts_double ***Ylmi;
523bf1 236 } ts_spharm;
SP 237
238
239
1d5dff 240 struct ts_poly {
M 241     ts_vertex_list *vlist;
242     ts_bond_list *blist;
243     ts_vertex *grafted_vtx;
48bb92 244     ts_double k;
1d5dff 245 };
M 246 typedef struct ts_poly ts_poly;
247
248
249 struct ts_poly_list {
250     ts_uint    n;
251     ts_poly **poly;
252 };
253 typedef struct ts_poly_list ts_poly_list;
254
255
514ebc 256 typedef struct{
SP 257     ts_float z_max;
258     ts_float z_min;
259     ts_int force_switch;
260 } ts_confinement_plane;
1d5dff 261
9166cb 262 typedef struct {
SP 263     long int nshell;
264     long int ncxmax;
265     long int ncymax;
266     long int nczmax;
267     long int npoly;
268     long int nmono;
e98482 269     long int internal_poly;
9166cb 270     long int nfil;
SP 271     long int nfono;
272     long int R_nucleus;
37791b 273     ts_double R_nucleusX;
SP 274     ts_double R_nucleusY;
275     ts_double R_nucleusZ;
9166cb 276     long int pswitch;
SP 277     long int constvolswitch;
c0ae90 278     long int constareaswitch;
2ae815 279     long int stretchswitch;
SP 280     ts_double xkA0;
43c042 281     ts_double constvolprecision;
9166cb 282         char *multiprocessing;
SP 283        long int brezveze0;
284         long int brezveze1;
285         long int brezveze2;
286         ts_double xk0;
287     ts_double dmax;
288     ts_double dmin_interspecies;
289     ts_double stepsize;
290     ts_double kspring;
291     ts_double xi;
292     ts_double pressure;
293     long int iterations;
294     long int inititer;
295     long int mcsweeps;
296     long int quiet;
297     long int shc;
e5858f 298     long int number_of_vertices_with_c0;
SP 299     ts_double c0;
300     ts_double w;
250de4 301     ts_double F;
514ebc 302     long int plane_confinement_switch;
SP 303     ts_double plane_d;
304     ts_double plane_F;
9166cb 305 } ts_tape;
SP 306
307
308
1d5dff 309
523bf1 310 typedef struct {
bb77ca 311     ts_vertex_list *vlist;
SP 312     ts_bond_list *blist;
313     ts_triangle_list *tlist;
48bb92 314     ts_cell_list *clist;
bb77ca 315     ts_uint nshell;
48bb92 316     ts_double bending_rigidity;
M 317     ts_double dmax;
318     ts_double stepsize;
319        ts_double cm[3];
320     ts_double volume;
321     ts_spharm *sphHarmonics;
624f81 322 // Polymers outside the vesicle and attached to the vesicle membrane (polymer brush):
1d5dff 323     ts_poly_list *poly_list;
624f81 324 // Filaments inside the vesicle (not attached to the vesicel membrane:
M 325     ts_poly_list *filament_list;
326
48bb92 327     ts_double spring_constant;
e86357 328     ts_double pressure;
b866cf 329     ts_int pswitch;
514ebc 330      ts_tape *tape;
624f81 331     ts_double R_nucleus;
37791b 332     ts_double R_nucleusX;
SP 333     ts_double R_nucleusY;
334     ts_double R_nucleusZ;
4891eb 335     ts_double nucleus_center[3];
514ebc 336     ts_double area;
SP 337     ts_confinement_plane confinement_plane;
d7639a 338 } ts_vesicle;
SP 339
340
523bf1 341
759169 342 struct ts_cluster{
69a174 343     ts_uint nvtx;
SP 344     ts_uint idx;
345     ts_vertex **vtx;
759169 346 };
SP 347
348 typedef struct ts_cluster ts_cluster;
69a174 349
SP 350 typedef struct{
351     ts_uint n;
352     ts_cluster **cluster;
353 } ts_cluster_list;
354
355
d7639a 356 /* GLOBAL VARIABLES */
SP 357
358 int quiet;
1121fa 359 ts_double V0;
c0ae90 360 ts_double A0;
1121fa 361 ts_double epsvol;
c0ae90 362 ts_double epsarea;
d7639a 363 /* FUNCTIONS */
SP 364
365 /** Non-fatal error function handler:
366  *      @param text is a description of an error
367  *      @returns doesn't return anything
368 */
369 void err(char *text);
370
371 /** Fatal error function handler:
372  *      @param text is a description of an error
373  *      @param errcode is a (non-zero) error code
374  *      @returns terminates the execution of program with errcode set
375 */
376 void fatal(char *text, ts_int errcode);
377
7958e9 378 ts_uint ts_fprintf(FILE *fd, char *fmt, ...);
d7639a 379
737714 380 #define VTX(n) &(vlist->vtx[n])
SP 381 #define VTX_DATA(n) vlist->vtx[n].data
73f967 382
fbbc8e 383
SP 384 /* FOR PID GENERATION ROUTINE */
385 #define CPF_CLOEXEC 1
386
387 int createPidFile(const char *progName, const char *pidFile, int flags);
388
389 int lockRegion(int fd, int type, int whence, int start, int len);
cb2faf 390 char *libVersion();
d7639a 391 #endif