4 * author: frank zirkelbach (frank.zirkelbach@physik.uni-augsburg.de)
6 * this program tries helping to understand the amorphous depuration
7 * and recrystallization of SiCx while ion implantation at temperatures
8 * below 400 degree celsius.
9 * hopefully the program will simulate the stabilization of the
10 * selforganizing lamella structure in the observed behaviour.
13 * - J. K. N. Lindner. Habil.Schrift, Universitaet Augsburg.
14 * - Maik Haeberlen. Diplomarbeit, Universitaet Augsburg.
16 * Copyright (C) 2004 Frank Zirkelbach
18 * This program is free software; you can redistribute it and/or modify
19 * it under the terms of the GNU General Public License as published by
20 * the Free Software Foundation; either version 2 of the License, or
21 * (at your option) any later version.
23 * This program is distributed in the hope that it will be useful,
24 * but WITHOUT ANY WARRANTY; without even the implied warranty of
25 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 * GNU General Public License for more details.
28 * You should have received a copy of the GNU General Public License
29 * along with this program; if not, write to the Free Software
30 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
38 #include <sys/types.h>
52 #include "nlsop_general.h"
54 #define MAKE_AMORPH(N) *(N)|=AMORPH
55 #define MAKE_CRYST(N) *(N)&=~AMORPH
59 char p_file[MAX_CHARS];
60 char n_e_file[MAX_CHARS];
61 char r_file[MAX_CHARS];
68 int get_data_and_calc(t_event *event,void *allineed);
69 int nop(t_event *event,void *allineed);
74 printf("%s -i ip -p port -r/P/n random/profile/neloss file\n",prog);
79 * nlsop internal functions
82 int sputter(d3_lattice *d3_l)
87 size=d3_l->max_x*d3_l->max_y;
91 for(i=0;i<d3_l->max_z-1;i++)
93 memcpy(d3_l->status+offl,d3_l->status+offh,size);
94 memcpy(d3_l->extra+offl,d3_l->extra+offh,size*sizeof(int));
98 memset(d3_l->status+offl,0,size);
99 memset(d3_l->extra+offl,0,size);
104 int process_cell(d3_lattice *d3_l,u32 x,u32 y,u32 z,info *my_info,u32 nel_z)
112 thiz=d3_l->status+x+y*d3_l->max_x+z*d3_l->max_x*d3_l->max_y;
113 conc=d3_l->extra+x+y*d3_l->max_x+z*d3_l->max_x*d3_l->max_y;
114 //p=my_info->b*nel_z; // energieuebertrag prop zu nukl. bk
115 p=my_info->b*URAND_MAX; // konstanter energieuebertrag
116 for(i=-(my_info->range);i<=my_info->range;i++)
118 for(j=-(my_info->range);j<=my_info->range;j++)
122 off=((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;
123 if(*(d3_l->status+off)&AMORPH) p+=my_info->s*(*(d3_l->extra+off))*URAND_MAX/(i*i+j*j);
127 p+=*conc*my_info->c*URAND_MAX;
128 if(p>=URAND_MAX) MAKE_AMORPH(thiz);
130 if(!(*thiz&AMORPH)) {
131 if(get_rand(URAND_MAX)<=p) MAKE_AMORPH(thiz);
134 /* assume 1-p probability */
135 /* also look for neighbours ! */
136 q=(URAND_MAX-p)>0?URAND_MAX-p:0;
138 j+=(*(d3_l->status+((x+d3_l->max_x+1)%d3_l->max_x)+y*d3_l->max_x+z*d3_l->max_x*d3_l->max_y)&AMORPH)?1:0;
139 j+=(*(d3_l->status+((x+d3_l->max_x-1)%d3_l->max_x)+y*d3_l->max_x+z*d3_l->max_x*d3_l->max_y)&AMORPH)?1:0;
140 j+=(*(d3_l->status+x+((y+1+d3_l->max_y)%d3_l->max_y)*d3_l->max_x+z*d3_l->max_x*d3_l->max_y)&AMORPH)?1:0;
141 j+=(*(d3_l->status+x+((y-1+d3_l->max_y)%d3_l->max_y)*d3_l->max_x+z*d3_l->max_x*d3_l->max_y)&AMORPH)?1:0;
142 j+=(*(d3_l->status+x+y*d3_l->max_x+((z+1+d3_l->max_z)%d3_l->max_z)*d3_l->max_x*d3_l->max_y)&AMORPH)?1:0;
143 j+=(*(d3_l->status+x+y*d3_l->max_x+((z-1+d3_l->max_z)%d3_l->max_z)*d3_l->max_x*d3_l->max_y)&AMORPH)?1:0;
147 if(get_rand(URAND_MAX)>p) MAKE_CRYST(thiz);
155 int distrib_c(d3_lattice *d3_l,info *my_info,int step,u32 rj_m,u32 *rj_g)
162 /* put one c ion somewhere in the lattice */
163 x=get_rand(d3_l->max_x);
164 y=get_rand(d3_l->max_y);
165 z=get_rand_reject(d3_l->max_z,rj_m,rj_g);
166 *(d3_l->extra+x+y*d3_l->max_x+z*d3_l->max_x*d3_l->max_y)+=1;
169 if(step%my_info->diff_rate==0)
172 for(i=0;i<d3_l->max_x;i++)
174 for(j=0;j<d3_l->max_y;j++)
176 for(k=0;k<d3_l->max_z;k++)
178 offset=i+j*d3_l->max_x+k*d3_l->max_x*d3_l->max_y;
179 /* case amorph: amorph <- cryst diffusion */
180 if(*(d3_l->status+offset)&AMORPH)
186 off=((i+d3_l->max_x+c)%d3_l->max_x)+j*d3_l->max_x+k*d3_l->max_x*d3_l->max_y;
188 if(!(*(d3_l->status+off)&AMORPH)) carry=(int)(my_info->dr_ac*(*(d3_l->extra+off)));
191 *(d3_l->extra+offset)+=carry;
192 *(d3_l->extra+off)-=carry;
200 off=i+((j+c+d3_l->max_y)%d3_l->max_y)*d3_l->max_x+k*d3_l->max_x*d3_l->max_y;
202 if(!(*(d3_l->status+off)&AMORPH)) carry=(int)(my_info->dr_ac*(*(d3_l->extra+off)));
205 *(d3_l->extra+offset)+=carry;
206 *(d3_l->extra+off)-=carry;
210 /* diff in z direction */
213 off=i+j*d3_l->max_x+(k-1)*d3_l->max_x*d3_l->max_y;
215 if(!*(d3_l->status+off)&AMORPH) carry=(int)(my_info->dr_ac*(*(d3_l->extra+off)));
218 *(d3_l->extra+off)-=carry;
219 *(d3_l->extra+offset)+=carry;
224 off=i+j*d3_l->max_x+(k+1)*d3_l->max_x*d3_l->max_y;
226 if(!*(d3_l->status+off)&AMORPH) carry=(int)(my_info->dr_ac*(*(d3_l->extra+off)));
229 *(d3_l->extra+off)-=carry;
230 *(d3_l->extra+offset)+=carry;
238 } /* if step modulo diff_rate == 0 */
243 u32 get_reject_graph(info *my_info,d3_lattice *d3_l,char *file,u32 *graph) {
252 if((fd=open(file,O_RDONLY))<0)
254 puts("cannot open file to calculate rejection graph");
257 if((flag=(unsigned char *)malloc(d3_l->max_z))==NULL)
259 puts("cannot malloc flag memory for rejection graph");
262 memset(flag,0,d3_l->max_z);
263 memset(graph,0,d3_l->max_z*sizeof(u32));
270 k=read(fd,&buf[i],1);
271 if((buf[i]=='\n')||(k==0)) break;
276 a=atof(p)/10; /* nm */
279 if(a>d3_l->max_z*CELL_LENGTH) k=0;
282 graph[(int)(a/CELL_LENGTH)]=(int)(URAND_MAX/100*b);
283 flag[(int)(a/CELL_LENGTH)]=1;
287 /* do (linear) interpolation here! */
295 while(flag[i]==0&&i<d3_l->max_z) i++;
296 for(k=j+1;k<i;k++) graph[k]=(int)((k-j)*((int)graph[i]-(int)graph[j])/(i-j))+graph[j];
297 if(graph[i]>max) max=graph[i];
302 #ifdef DEBUG_INTERPOL_PROFILE
303 printf("debug: %s (interpolated profile)\n",file);
304 for(i=0;i<d3_l->max_z;i++) printf("%d %d\n",i,graph[i]);
310 void send_data(int signum) {
314 c=gd3_l->max_x*gd3_l->max_y*gd3_l->max_z;
316 network_send_chan(gnet,0,&dc,1);
317 network_send_chan(gnet,0,(unsigned char *)gd3_l,sizeof(d3_lattice));
318 network_send_chan(gnet,0,(unsigned char *)gmy_info,sizeof(info));
319 network_send_chan(gnet,0,gd3_l->status,c*sizeof(unsigned char));
320 network_send_chan(gnet,0,(unsigned char *)gd3_l->extra,c*sizeof(int));
321 network_send_chan(gnet,0,(unsigned char *)gi,sizeof(int));
329 int main(int argc,char **argv)
336 unsigned char data[256];
342 strcpy(server_ip,"137.250.82.105");
343 strcpy(p_file,IMP_PROFILE);
344 strcpy(n_e_file,NEL_PROFILE);
348 /* parse/check argv */
349 for(i=1;i<argc;i++) {
350 if(argv[i][0]=='-') {
356 strncpy(server_ip,argv[++i],16);
359 strcpy(r_file,argv[++i]);
362 strcpy(p_file,argv[++i]);
365 strcpy(n_e_file,argv[++i]);
368 port=atoi(argv[++i]);
376 if(!strcmp(server_ip,"")) {
382 event_init(&event,1);
383 event_set_timeout(&event,0,0);
385 /* connect to server */
386 network_init(&net,1);
387 network_set_connection_info(&net,0,server_ip,port);
388 if(network_connect(&net,0)==N_E_CONNECT) {
389 printf("unable to connect to server, aborting ...\n");
392 network_select(&net,0);
394 /* tell server: i am a client, i may work for you */
395 data[0]=NLSOP_CLIENT;
396 network_send(net.connection[0].fd,data,1);
399 event_math(net.connection[0].fd,&event,READ,ADD);
400 printf("idle, waiting for jobs ...\n");
401 event_start(&event,NULL,get_data_and_calc,nop);
406 int nop(t_event *event,void *allineed) {
408 printf("\ni did a nop :)\n");
413 int get_data_and_calc(t_event *event,void *allineed) {
438 printf("got a new job ...\n");
440 /* get info (+data) */
441 network_receive(net->connection[0].fd,&data,sizeof(unsigned char));
442 if(data==NLSOP_NJOB || data==NLSOP_CJOB) {
443 network_receive(net->connection[0].fd,(unsigned char *)&d3_l,
445 network_receive(net->connection[0].fd,(unsigned char *)&my_info,
448 j=d3_l.max_x*d3_l.max_y*d3_l.max_z;
449 d3_l.status=(unsigned char *)malloc(j*sizeof(unsigned char));
450 if(d3_l.status==NULL) {
451 printf("status alloc failed\n");
454 d3_l.extra=(int *)malloc(j*sizeof(int));
455 if(d3_l.extra==NULL) {
456 printf("extra malloc failed\n");
459 if(data==NLSOP_CJOB) {
461 network_receive(net->connection[0].fd,d3_l.status,
462 j*sizeof(unsigned char));
463 network_send(net->connection[0].fd,&data,sizeof(unsigned char));
464 network_receive(net->connection[0].fd,(unsigned char *)d3_l.extra,
466 network_send(net->connection[0].fd,&data,sizeof(unsigned char));
467 network_receive(net->connection[0].fd,(unsigned char *)&c_step,
469 network_send(net->connection[0].fd,&data,sizeof(unsigned char));
473 printf("unknown instruction, restarting ...\n");
477 printf("starting simulation with following parameters:\n");
478 printf("b = %f | c = %f | s = %f\n",my_info.b,my_info.c,my_info.s);
479 printf("diff every %d steps | diff rate = %f\n",my_info.diff_rate,
481 printf("current step: %d | total steps: %d\n",c_step,my_info.steps);
484 /* care for signals */
486 signal(SIGTERM,send_data);
489 if(!strcmp(r_file,"")) rand_init(NULL);
490 else rand_init(r_file);
492 /* compute graphs for random number rejection method */
493 if((c_profile=(u32 *)malloc(d3_l.max_z*sizeof(unsigned int)))==NULL) {
494 puts("failed allocating memory for carbon profile graph");
497 if((n_e_loss=(u32 *)malloc(d3_l.max_z*sizeof(unsigned int)))==NULL) {
498 puts("failed allocating memory for nuclear energy loss graph");
501 ip_max=get_reject_graph(&my_info,&d3_l,p_file,c_profile);
502 ne_max=get_reject_graph(&my_info,&d3_l,n_e_file,n_e_loss);
504 /* array nel_z[] keeping nuclear energy loss values scaled to URAND_MAX */
505 nel_z=(u32 *)malloc(d3_l.max_z*sizeof(unsigned int));
507 printf("failed allocating nel_z array mem\n");
510 for(i=0;i<d3_l.max_z;i++) nel_z[i]=URAND_MAX*(1.0*n_e_loss[i]/ne_max);
512 /* this should be obsolete - z is high enough - we check now! */
513 if(c_profile[d3_l.max_z-1]!=0) {
514 printf("max_z (%d) too small - sputtering not possible\n",d3_l.max_z);
518 /* sputtering really possible ?*/
519 if(n_e_loss[d3_l.max_z-1]!=0)
520 printf("warning: max_z (%d) too small, there may be amorphous volumes\n",
524 * start of simulation
528 while(i<my_info.steps) {
529 for(j=0;j<my_info.cpi;j++) {
530 x_c=get_rand(d3_l.max_x);
531 y_c=get_rand(d3_l.max_y);
532 z_c=get_rand_reject(d3_l.max_z,ne_max,n_e_loss);
533 //z_c=get_rand(d3_l.max_z);
534 process_cell(&d3_l,x_c,y_c,z_c,&my_info,nel_z[z_c]);
536 distrib_c(&d3_l,&my_info,i,ip_max,c_profile);
538 if(i%my_info.save_rate==0) {
543 if(i%my_info.s_rate==0) sputter(&d3_l);
551 /* shutdown/free/close everything now ... */