first (not yet ready) main code
[physik/nlsop.git] / nlsop.c
1 /*
2  * nlsop.c 
3  *
4  * this program tries helping to understand the amorphous depuration
5  * and recrystallization of SiCx while ion implanation. hopefully the program 
6  * will simulate the stabilization of the selforganizing structure in the
7  * observed behaviour.
8  *
9  * refs: 
10  *  - J. K. N. Lindner. Habilationsschrift, Universitaet Augsburg.
11  *  - Maik Haeberlen. Diplomarbeit, Universitaet Augsburg.
12  */
13
14 #define _GNU_SOURCE
15 #include <stdio.h>
16 #include <stdlib.h>
17 #include <string.h>
18 #include <sys/types.h>
19 #include <sys/stat.h>
20 #include <fcntl.h>
21 #include <unistd.h>
22
23 #include "nlsop.h"
24
25 #include "dfbapi.h"
26 #include "random.h"
27
28 #define MAKE_AMORPH(N) *(N)|=AMORPH
29 #define MAKE_CRYST(N) *(N)&=~AMORPH
30
31 int usage(void)
32 {
33  puts("usage:");
34  puts("-h \t\t help");
35  puts("-n \t\t no user interaction");
36  printf("-a <value> \t slope of nuclear energy loss (default %d)\n",A_EL);
37  printf("-b <value> \t nuclear energy loss offset (default %d)\n",B_EL);
38  printf("-x <value> \t # x cells (default %d)\n",X);
39  printf("-y <value> \t # x cells (default %d)\n",Y);
40  printf("-z <value> \t # x cells (default %d)\n",Z);
41  printf("-X <value> \t display x (default %d)\n",X/2-1);
42  printf("-Y <value> \t display y (default %d)\n",Y/2-1);
43  printf("-Z <value> \t display z (default %d)\n",Z/2-1);
44  printf("-s <value> \t steps (default %d)\n",STEPS);
45  printf("-d <value> \t refresh display (default %d)\n",REFRESH);
46  printf("-r <value> \t amorphous influence range (default %d)\n",RANGE);
47  printf("-f <value> \t pressure = <value> * 1/distance^2 (default %f)\n",A_AP);
48  printf("-p <value> \t pressure offset (default %f)\n",B_AP);
49  printf("-A <value> \t slope of linear c distribution (default %f)\n",A_CD);
50  printf("-B <value> \t linear c distribution offset (default %f)\n",B_CD);
51  printf("-C <value> \t initial c concentration (default %d)\n",CC);
52  puts("-L <file> \t load from file");
53  puts("-S <file> \t save to file");
54  puts("-R <file> \t read from random file");
55  
56  return 1;
57 }
58
59 int process_cell(3d_lattice *3d_l,u32 x,u32 y,u32 z,int r,double a,double b,int *t_c)
60 {
61  unsigned char *thiz;
62  int *conc;
63  int i,j;
64  double p;
65
66  thiz=3d_l->status+x+y*d3_l->max_x+z*d3_l->max_x*d3_l->max_y;
67  conc=3d_l->extra+x+y*d3_l->max_x+z*d3_l->max_x*d3_l->max_y;
68  p=b*URAND_MAX;
69  for(i=-r;i<=r;i++)
70  {
71   for(j=-r;j<=r;j++)
72   {
73    if(!(i==0 && j==0))
74    {
75     if(*(d3_l->status+((x+d3_l->max_x+i)%d3_l->max_x)+((y+d3_l->max_y+j)%d3_l->max_x)*d3_l->max_x+z*d3_l->max_x*d3_l->max_y)&AMORPH) p+=a*URAND_MAX/(i*i+j*j);
76    } 
77   }
78  }
79  p*=*conc;
80  if(!(*thiz&AMORPH))
81  {
82   if(rand_get(URAND_MAX)<=p)
83   {
84    MAKE_AMORPH(thiz);
85    *t_c=*t_c+1-*conc;
86   } else *t_c+=1;
87  } else
88  {
89   /* assume 1-p probability */
90   if(rand_get(URAND_MAX)>p)
91   {
92    MAKE_CRYST(thiz);
93    *t_c=*t_c+1+*conc;
94   } else *t_c+=1;
95  }
96
97  return 1;
98 }
99
100 int distrib_c(3d_lattice *3d_l,int t_c,double a,double b)
101 {
102  int i,j,total,area;
103
104  for(i=0;i<d3_l->max_z;i++)
105  {
106  
107  }
108
109  return 1;
110 }