basic integration method and functions added
[physik/posic.git] / posic.h
1 /*
2  * posic.h - precipitation process of silicon carbide in silicon
3  *
4  * author: Frank Zirkelbach <hackbard@hackdaworl.org>
5  *
6  */
7
8 #define _GNU_SOURCE
9 #include <stdio.h>
10 #include <stdlib.h>
11 #include <string.h>
12 #include <unistd.h>
13 #include <sys/types.h>
14 #include <sys/stat.h>
15 #include <fcntl.h>
16
17 #ifndef POSIC_H
18 #define POSIC_H
19
20 #define RUNS 15000
21 #define TAU 0.000001
22
23 #define TEMPERATURE 273.0 
24
25 #define LEN_X 1
26 #define LEN_Y 1
27 #define LEN_Z 1
28
29 #define R_CUTOFF 20
30
31 #endif