more testing
[physik/posic.git] / moldyn.h
1 /*
2  * moldyn.h - molecular dynamics library header file
3  *
4  * author: Frank Zirkelbach <frank.zirkelbach@physik.uni-augsburg.de>
5  *
6  */
7
8 #ifndef MOLDYN_H
9 #define MOLDYN_H
10
11 #include "math/math.h"
12 #include "random/random.h"
13
14 /* datatypes */
15
16 typedef struct s_atom {
17         t_3dvec r;      /* positions */
18         t_3dvec v;      /* velocities */
19         t_3dvec f;      /* forces */
20         int element;    /* number of element in pse */
21         double mass;    /* atom mass */
22         //t_list vicinity       /* verlet neighbour list */
23 } t_atom;
24
25 typedef struct s_moldyn {
26         /* atoms, amount, dimensions */
27         int count;
28         t_atom *atom;
29         t_3dvec dim;
30         /* potential, force & parameters */
31         double (*potential)(struct s_moldyn *moldyn);
32         int (*force)(struct s_moldyn *moldyn);
33         void *pot_params;
34         double cutoff;
35         double cutoff_square;
36         /* temperature */
37         double t;
38         /* integration of newtons equations */
39         int (*integrate)(struct s_moldyn *moldyn);
40         int time_steps;
41         double tau;
42         /* logging & visualization */
43         unsigned char lvstat;
44         unsigned int ewrite;
45         char efb[64];
46         int efd;
47         unsigned int mwrite;
48         char mfb[64];
49         int mfd;
50         unsigned int swrite;
51         char sfb[64];
52         int sfd;
53         unsigned int dwrite;
54         char dfb[64];
55         int dfd;
56         unsigned int vwrite;
57         char vfb[64];
58         void *visual;
59         /* moldyn general status */
60         unsigned char status;
61 } t_moldyn;
62
63 typedef struct s_ho_params {
64         double spring_constant;
65         double equilibrium_distance;
66 } t_ho_params;
67
68 typedef struct s_lj_params {
69         double sigma6;
70         double sigma12;
71         double epsilon;
72 } t_lj_params;
73
74 /*
75  *  defines
76  */
77
78 /* general defines */
79
80 #define MOLDYN_LVSTAT_TOTAL_E           0x01
81 #define MOLDYN_LVSTAT_TOTAL_M           0x02
82 #define MOLDYN_LVSTAT_SAVE              0x04
83 #define MOLDYN_LVSTAT_DUMP              0x08
84 #define MOLDYN_LVSTAT_VISUAL            0x10
85 #define MOLDYN_LVSTAT_INITIALIZED       0x80
86
87 #define MOLDYN_STAT_POTENTIAL           0x01
88 #define MOLDYN_STAT_FORCE               0x02
89
90 #define MOLDYN_TEMP                     273.0
91 #define MOLDYN_TAU                      1.0e-15
92 #define MOLDYN_RUNS                     1000000
93
94 /* phsical values */
95
96 #define K_BOLTZMANN             1.3807e-27                      /* Nm/K */
97 #define AMU                     1.660540e-27                    /* kg */
98
99 #define FCC                     0x01
100 #define DIAMOND                 0x02
101
102 #define C                       0x06
103 #define M_C                     (12.011*AMU)
104
105 #define SI                      0x0e
106 #define LC_SI                   0.543105e-9                             /* m */
107 #define M_SI                    (28.085*AMU)                            /* kg */
108 #define LJ_SIGMA_SI             ((0.25*sqrt(3.0)*LC_SI)/1.122462)       /* m */
109 #define LJ_EPSILON_SI           (2.1678*1.60e-19)                       /* Nm */
110
111 /* function prototypes */
112
113 int moldyn_usage(char **argv);
114 int moldyn_parse_argv(t_moldyn *moldyn,int argc,char **argv);
115 int moldyn_log_init(t_moldyn *moldyn,void *v);
116 int moldyn_shutdown(t_moldyn *moldyn);
117
118 int create_lattice(unsigned char type,int element,double mass,double lc,
119                    int a,int b,int c,t_atom **atom);
120 int destroy_lattice(t_atom *atom);
121 int thermal_init(t_moldyn *moldyn,t_random *random,int count);
122 int scale_velocity(t_moldyn *moldyn,int count);
123 double get_e_kin(t_atom *atom,int count);
124 double get_e_pot(t_moldyn *moldyn);
125 double get_total_energy(t_moldyn *moldyn);
126 t_3dvec get_total_p(t_atom *atom,int count);
127
128 double estimate_time_step(t_moldyn *moldyn,double nn_dist,double t);
129
130 int moldyn_integrate(t_moldyn *moldyn);
131 int velocity_verlet(t_moldyn *moldyn);
132
133 double potential_harmonic_oscillator(t_moldyn *moldyn);
134 int force_harmonic_oscillator(t_moldyn *moldyn);
135 double potential_lennard_jones(t_moldyn *moldyn);
136 int force_lennard_jones(t_moldyn *moldyn);
137
138 #endif