some bugfixes ... com'on
[physik/posic.git] / sic.c
1 /*
2  * sic.c - investigation of the sic precipitation process of silicon carbide
3  *
4  * author: Frank Zirkelbach <frank.zirkelbach@physik.uni-augsburg.de>
5  *
6  */
7
8 #include <math.h>
9  
10 #include "moldyn.h"
11 #include "math/math.h"
12 #include "init/init.h"
13 #include "visual/visual.h"
14
15 #include "posic.h"
16
17 int main(int argc,char **argv) {
18         /* main moldyn structure */
19         t_moldyn md;
20
21         /* potential parameters */
22         t_lj_params lj;
23         t_ho_params ho;
24         t_tersoff_mult_params tp;
25
26         /* misc parameters */
27         double tau;
28
29         /* values */
30         tau=1.0e-15;    /* delta t = 1 fs */
31
32         /* initialize moldyn */
33         printf("[sic] moldyn init\n");
34         moldyn_init(&md,argc,argv);
35
36         /* choose integration algorithm */
37         printf("[sic] setting integration algorithm\n");
38         set_int_alg(&md,MOLDYN_INTEGRATE_VERLET);
39
40         /* choose potential */
41         printf("[sic] selecting potential\n");
42         set_potential1b(&md,tersoff_mult_1bp,&tp);
43         set_potential2b(&md,tersoff_mult_2bp,&tp);
44         set_potential2b_post(&md,tersoff_mult_post_2bp,&tp);
45         set_potential3b(&md,tersoff_mult_3bp,&tp);
46         //set_potential2b(&md,lennard_jones,&lj);
47
48         /*
49          * potential parameters
50          */
51
52         /* lennard jones */
53         lj.sigma6=LJ_SIGMA_SI*LJ_SIGMA_SI*LJ_SIGMA_SI;
54         lj.sigma6*=lj.sigma6;
55         lj.sigma12=lj.sigma6*lj.sigma6;
56         lj.epsilon4=4.0*LJ_EPSILON_SI;
57
58         /* harmonic oscillator */
59         ho.equilibrium_distance=0.25*sqrt(3.0)*LC_SI;
60         ho.spring_constant=1;
61
62         /*
63          * tersoff mult potential parameters for SiC
64          */
65         tp.S[0]=TM_S_SI;
66         tp.R[0]=TM_R_SI;
67         tp.A[0]=TM_A_SI;
68         tp.B[0]=TM_B_SI;
69         tp.lambda[0]=TM_LAMBDA_SI;
70         tp.mu[0]=TM_MU_SI;
71         tp.beta[0]=TM_BETA_SI;
72         tp.n[0]=TM_N_SI;
73         tp.c[0]=TM_C_SI;
74         tp.d[0]=TM_D_SI;
75         tp.h[0]=TM_H_SI;
76
77         tp.S[1]=TM_S_C;
78         tp.R[1]=TM_R_C;
79         tp.A[1]=TM_A_C;
80         tp.B[1]=TM_B_C;
81         tp.lambda[1]=TM_LAMBDA_C;
82         tp.mu[1]=TM_MU_C;
83         tp.beta[1]=TM_BETA_C;
84         tp.n[1]=TM_N_C;
85         tp.c[1]=TM_C_C;
86         tp.d[1]=TM_D_C;
87         tp.h[1]=TM_H_C;
88
89         tp.chi=TM_CHI_SIC;
90
91         tersoff_mult_complete_params(&tp);
92
93         /* cutoff radius */
94         printf("[sic] setting cutoff radius\n");
95         set_cutoff(&md,TM_S_SI);
96
97         /* set (initial) dimensions of simulation volume */
98         printf("[sic] setting dimensions\n");
99         set_dim(&md,5*LC_SI,5*LC_SI,5*LC_SI,TRUE);
100
101         /* set periodic boundary conditions in all directions */
102         printf("[sic] setting periodic boundary conditions\n");
103         set_pbc(&md,TRUE,TRUE,TRUE);
104
105         /* create the lattice / place atoms */
106         printf("[sic] creating atoms\n");
107         create_lattice(&md,DIAMOND,LC_SI,SI,M_SI,
108                        ATOM_ATTR_1BP|ATOM_ATTR_2BP|ATOM_ATTR_3BP|ATOM_ATTR_HB,
109                        //ATOM_ATTR_1BP|ATOM_ATTR_2BP|ATOM_ATTR_3BP,
110                        //ATOM_ATTR_2BP|ATOM_ATTR_HB,
111                        0,5,5,5);
112
113         /* setting a nearest neighbour distance for the moldyn checks */
114         set_nn_dist(&md,sqrt(3.0)*LC_SI/4.0); /* diamond ! */
115
116         /* set temperature */
117         printf("[sic] setting temperature\n");
118         set_temperature(&md,273.0+450.0);
119         //set_temperature(&md,0.0);
120
121         /* set p/t scaling */
122         printf("[sic] set p/t scaling\n");
123         set_pt_scale(&md,0,0,T_SCALE_BERENDSEN,100*tau);
124         
125         /* initial thermal fluctuations of particles (in equilibrium) */
126         printf("[sic] thermal init\n");
127         thermal_init(&md,TRUE);
128
129         /* create the simulation schedule */
130         printf("[sic] adding schedule\n");
131         moldyn_add_schedule(&md,10000,1.0e-15);
132
133         /* activate logging */
134         printf("[sic] activate logging\n");
135         moldyn_set_log(&md,LOG_TOTAL_ENERGY,"saves/test-energy",100);
136         moldyn_set_log(&md,VISUAL_STEP,"saves/test-visual",100);
137
138         /*
139          * let's do the actual md algorithm now
140          *
141          * integration of newtons equations
142          */
143
144         printf("[sic] integration start, go get a coffee ...\n");
145         moldyn_integrate(&md);
146
147         /* close */
148
149         printf("[sic] shutdown\n");
150         moldyn_shutdown(&md);
151         
152         return 0;
153 }
154