Merge branch 'leadoff'
[physik/posic.git] / posic.c
1 /*
2  * posic.c - precipitation process of silicon carbide in silicon
3  *
4  * author: Frank Zirkelbach <frank.zirkelbach@physik.uni-augsburg.de>
5  *
6  */
7
8 /* main include file */
9
10 #include "posic.h"
11
12 /* functions */
13
14
15
16 /* main code */
17
18 int parse_config_file() {
19
20         return 0;
21 }
22
23 int main(int argc,char **argv) {
24
25         t_moldyn md;
26
27         t_lj_params *lj;
28         t_ho_params *ho;
29         t_tersoff_mult_params *tp;
30         t_albe_mult_params *ap;
31
32         lj=NULL;
33         ho=NULL;
34         tp=NULL;
35         ap=NULL;
36
37         memset(&md,0,sizeof(t_moldyn));
38
39
40         return 0;
41 }
42