even more testing ...
[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 10000000
21 #define TAU 0.000000000000001
22 #define WRITE_FILE 100000
23
24 #define TEMPERATURE 273.0 
25
26 #define LEN_X 10
27 #define LEN_Y 10
28 #define LEN_Z 10
29
30 #define R_CUTOFF (0.25*LEN_Z)
31
32 #endif