X-Git-Url: https://hackdaworld.org/gitweb/?p=physik%2Fnlsop.git;a=blobdiff_plain;f=nlsop.c;h=578a1de6cf6616a373bcc2e7f8387d22b232cccf;hp=2bec6ec342e2a53f260725d54f5d86fb5068f31f;hb=f9a7f27f952d23ebd856c4c60fbdf7c024f95f7b;hpb=071a604b4ac46c1c7b403e2e7b6042866415eb29 diff --git a/nlsop.c b/nlsop.c index 2bec6ec..578a1de 100644 --- a/nlsop.c +++ b/nlsop.c @@ -55,9 +55,9 @@ int usage(void) puts("-n \t\t no user interaction"); puts("-Z \t\t cryst -> amorph c diffusion in z direction"); puts("-i \t\t no cryst to cryst diffusion"); - printf("-x \t # x cells (default %d)\n",X); - printf("-y \t # y cells (default %d)\n",Y); - printf("-z \t # z cells (default %d)\n",Z); + printf("-x \t # x cells (default %d)\n",_X); + printf("-y \t # y cells (default %d)\n",_Y); + printf("-z \t # z cells (default %d)\n",_Z); printf("-s \t steps (default %d)\n",STEPS); printf("-d \t refresh display (default %d)\n",REFRESH); printf("-r \t amorphous influence range (default %d)\n",RANGE); @@ -65,7 +65,6 @@ int usage(void) printf("-p \t ballistic amorphization influence (default %f)\n",B_D); printf("-F \t carbon induced amorphization influence (default %f)\n",C_D); printf("-D \t diffusion rate from cryst to amorph cells (default %f)\n",DR_AC); - printf("-c \t diffusion rate in cryst cells (default %f)\n",DR_CC); printf("-e \t do diffusion every steps (default %d)\n",DIFF_RATE); puts("-g continue simulation from file and step (step > 0)!"); printf("-W \t write every steps to save file (default %d)\n",RESAVE); @@ -76,11 +75,33 @@ int usage(void) puts("-P \t specify implantation profile file"); puts("-N \t specify nuclear energy loss profile file"); printf("-H \t collisions per ion in simulation window (default %d)\n",CPI); - puts("-m \t specify c->a carbon saturation"); + printf("-m \t number of ion hits sputtering 3nm (default %d)\n",S_RATE); return 1; } +int sputter(d3_lattice *d3_l) +{ + int i,size; + int offh,offl; + + size=d3_l->max_x*d3_l->max_y; + offl=0; + offh=size; + + for(i=0;imax_z-1;i++) + { + memcpy(d3_l->status+offl,d3_l->status+offh,size); + memcpy(d3_l->extra+offl,d3_l->extra+offh,size*sizeof(int)); + offl=offh; + offh+=size; + } + memset(d3_l->status+offl,0,size); + memset(d3_l->extra+offl,0,size); + + return 1; +} + int process_cell(d3_lattice *d3_l,u32 x,u32 y,u32 z,info *my_info,u32 nel_z) { unsigned char *thiz; @@ -127,7 +148,7 @@ int process_cell(d3_lattice *d3_l,u32 x,u32 y,u32 z,info *my_info,u32 nel_z) return 1; } -int distrib_c(d3_lattice *d3_l,info *my_info,int step,double c_ratio,u32 rj_m,u32 *rj_g) +int distrib_c(d3_lattice *d3_l,info *my_info,int step,u32 rj_m,u32 *rj_g) { u32 x,y,z; int i,j,k,c; @@ -135,14 +156,11 @@ int distrib_c(d3_lattice *d3_l,info *my_info,int step,double c_ratio,u32 rj_m,u3 int carry; /* put one c ion somewhere in the lattice */ - if(my_info->ccmax_x); - y=get_rand(d3_l->max_y); - z=get_rand_reject(d3_l->max_z,rj_m,rj_g); - *(d3_l->extra+x+y*d3_l->max_x+z*d3_l->max_x*d3_l->max_y)+=1; - (my_info->cc)++; - } + x=get_rand(d3_l->max_x); + y=get_rand(d3_l->max_y); + z=get_rand_reject(d3_l->max_z,rj_m,rj_g); + *(d3_l->extra+x+y*d3_l->max_x+z*d3_l->max_x*d3_l->max_y)+=1; + (my_info->cc)++; if(step%my_info->diff_rate==0) { @@ -155,7 +173,7 @@ int distrib_c(d3_lattice *d3_l,info *my_info,int step,double c_ratio,u32 rj_m,u3 { offset=i+j*d3_l->max_x+k*d3_l->max_x*d3_l->max_y; /* case amorph: amorph <- cryst diffusion */ - if(*(d3_l->status+offset)&AMORPH && *(d3_l->extra+offset)c_sat) + if(*(d3_l->status+offset)&AMORPH) { for(c=-1;c<=1;c++) { @@ -185,74 +203,30 @@ int distrib_c(d3_lattice *d3_l,info *my_info,int step,double c_ratio,u32 rj_m,u3 } } } - if(my_info->z_diff) - { - if(k!=0) - { - off=i+j*d3_l->max_x+(k-1)*d3_l->max_x*d3_l->max_y; - carry=0; - if(!*(d3_l->status+off)&AMORPH) carry=(int)(my_info->dr_ac*(*(d3_l->extra+off))); - if(carry!=0) - { - *(d3_l->extra+off)-=carry; - *(d3_l->extra+offset)+=carry; - } - } - if(k!=d3_l->max_z-1) - { - off=i+j*d3_l->max_x+(k+1)*d3_l->max_x*d3_l->max_y; - carry=0; - if(!*(d3_l->status+off)&AMORPH) carry=(int)(my_info->dr_ac*(*(d3_l->extra+off))); - if(carry!=0) - { - *(d3_l->extra+off)-=carry; - *(d3_l->extra+offset)+=carry; - } - } - } - } else - /* case not amorph: cryst <-> cryst diffusion */ - if(my_info->c_diff) { - /* if there is c diff, no diff in z-direction */ - { - for(c=-1;c<=1;c++) + /* z diff */ + if(k!=0) { - if(c!=0) + off=i+j*d3_l->max_x+(k-1)*d3_l->max_x*d3_l->max_y; + carry=0; + if(!*(d3_l->status+off)&AMORPH) carry=(int)(my_info->dr_ac*(*(d3_l->extra+off))); + if(carry!=0) { - 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; - carry=0; - if(!(*(d3_l->status+off)&AMORPH)) - { - carry=(int)(my_info->dr_cc*(*(d3_l->extra+off)-*(d3_l->extra+offset))/2); - if(carry!=0) - { - *(d3_l->extra+offset)+=carry; - *(d3_l->extra+off)-=carry; - } - } + *(d3_l->extra+off)-=carry; + *(d3_l->extra+offset)+=carry; } } - for(c=-1;c<=1;c++) + if(k!=d3_l->max_z-1) { - if(c!=0) + off=i+j*d3_l->max_x+(k+1)*d3_l->max_x*d3_l->max_y; + carry=0; + if(!*(d3_l->status+off)&AMORPH) carry=(int)(my_info->dr_ac*(*(d3_l->extra+off))); + if(carry!=0) { - off=((i+c+d3_l->max_x)%d3_l->max_x)+j*d3_l->max_x+k*d3_l->max_x*d3_l->max_y; - carry=0; - if(!(*(d3_l->status+off)&AMORPH)) - { - carry=(int)(my_info->dr_cc*(*(d3_l->extra+off)-*(d3_l->extra+offset))/2); - if(carry!=0) - { - *(d3_l->extra+offset)+=carry; - *(d3_l->extra+off)-=carry; - } - } + *(d3_l->extra+off)-=carry; + *(d3_l->extra+offset)+=carry; } } } - /* end test */ - } - /* */ } /* for z */ } /* for y */ } /* for x */ @@ -1131,7 +1105,7 @@ int main(int argc,char **argv) d3_lattice d3_l; info my_info; unsigned char mode; - double c_ratio; + //double c_ratio; #ifdef USE_DFB_API int max_extra; #endif @@ -1140,24 +1114,21 @@ int main(int argc,char **argv) u32 ne_max,ip_max; u32 nel_z; - d3_l.max_x=X; - d3_l.max_y=Y; - d3_l.max_z=Z; + d3_l.max_x=_X; + d3_l.max_y=_Y; + d3_l.max_z=_Z; my_info.steps=STEPS; my_info.range=RANGE; refresh=REFRESH; resave=RESAVE; - my_info.z_diff=0; - my_info.c_diff=1; my_info.s=S_D; my_info.b=B_D; my_info.c=C_D; my_info.cc=CC; my_info.dr_ac=DR_AC; - my_info.dr_cc=DR_CC; my_info.diff_rate=DIFF_RATE; my_info.cpi=CPI; - my_info.c_sat=C_SAT; + my_info.s_rate=S_RATE; nowait=0; quit=0; escape=0; @@ -1199,13 +1170,6 @@ int main(int argc,char **argv) case 'z': d3_l.max_z=atoi(argv[++i]); break; - case 'Z': - my_info.z_diff=1; - break; - case 'i': - my_info.c_diff=0; - my_info.dr_cc=0; - break; case 's': my_info.steps=atoi(argv[++i]); break; @@ -1235,9 +1199,6 @@ int main(int argc,char **argv) case 'D': my_info.dr_ac=atof(argv[++i]); break; - case 'c': - my_info.dr_cc=atof(argv[++i]); - break; case 'e': my_info.diff_rate=atoi(argv[++i]); break; @@ -1264,7 +1225,7 @@ int main(int argc,char **argv) my_info.cpi=atoi(argv[++i]); break; case 'm': - my_info.c_sat=atoi(argv[++i]); + my_info.s_rate=atoi(argv[++i]); break; default: usage(); @@ -1352,13 +1313,11 @@ int main(int argc,char **argv) sprintf(ballistic_txt,"ballistic term: %f",my_info.b); sprintf(carbon_txt,"carbon term: %f",my_info.c); sprintf(dr_ac_txt,"a/c diffusion rate: %f",my_info.dr_ac); - if(my_info.c_diff!=0) sprintf(dr_cc_txt,"c/c diffusion rate: %f",my_info.dr_cc); - else sprintf(dr_cc_txt,"c/c diffusion rate: none"); - sprintf(zdiff_txt,"diffusion in z direction: %c",my_info.z_diff?'y':'n'); + sprintf(zdiff_txt,"diffusion in z direction: yes"); sprintf(diff_txt,"diffusion every %d steps",my_info.diff_rate); strcpy(mode_txt,"view: a/c mode"); sprintf(hpi_txt,"hits per ion: %d",my_info.cpi); - sprintf(csat_txt,"carbon saturation: %d",my_info.c_sat); + sprintf(csat_txt,"sputter rate (3nm/#c): %d",my_info.s_rate); arg_v[1]=mode_txt; arg_v[2]=xyz_txt; arg_v[3]=status_txt; @@ -1404,18 +1363,30 @@ int main(int argc,char **argv) ip_max=get_reject_graph(&my_info,&d3_l,p_file,c_profile); ne_max=get_reject_graph(&my_info,&d3_l,n_e_file,n_e_loss); +#ifdef MORE_PRINTF + printf(" done\n"); +#endif + + if((!strcmp(l_file,""))||(c_step)) { - /* calculate ratio of c_simwindow / c_total */ - if(get_c_ratio(&c_ratio,p_file,&my_info,&d3_l)!=1) + + /* this should be obsolete - z is high enough - we check now! */ + if(c_profile[d3_l.max_z-1]!=0) { - puts("failed calculating ratio"); + printf("max_z (%d) too small - sputtering not possible\n",d3_l.max_z); return -1; } + /* calculate ratio of c_simwindow / c_total */ + //if(get_c_ratio(&c_ratio,p_file,&my_info,&d3_l)!=1) + //{ + // puts("failed calculating ratio"); + // return -1; + //} -#ifdef MORE_PRINTF - printf(" done\n"); -#endif + /* sputtering realy possible ?*/ + if(n_e_loss[d3_l.max_z-1]!=0) + printf("warning: max_z (%d) too small - there may be amorphous volumes\n",d3_l.max_z); #ifdef DEBUG_RAND i=0; @@ -1454,7 +1425,7 @@ int main(int argc,char **argv) nel_z=URAND_MAX*(1.0*n_e_loss[z_c]/ne_max); process_cell(&d3_l,x_c,y_c,z_c,&my_info,nel_z); } - distrib_c(&d3_l,&my_info,i,c_ratio,ip_max,c_profile); + distrib_c(&d3_l,&my_info,i,ip_max,c_profile); #ifdef USE_DFB_API if(i%refresh==0) { @@ -1475,6 +1446,7 @@ int main(int argc,char **argv) #endif } i++; + if(i%my_info.s_rate==0) sputter(&d3_l); } }