X-Git-Url: https://hackdaworld.org/gitweb/?a=blobdiff_plain;f=main.c;h=9438a327d452ee07d62090f56cf7b51bb16b8966;hb=dcc213e7fef0a79e92d8548bd9a37461e91c9a5c;hp=a030dd626f6f7f60f69faf974799490c1fb59538;hpb=5bfef21f2626d1a7860d677a9a4008bcd4c0b84e;p=physik%2Fmorpheus.git diff --git a/main.c b/main.c index a030dd6..9438a32 100644 --- a/main.c +++ b/main.c @@ -8,6 +8,254 @@ * * refs: * - J. K. N. Lindner. Habilationsschrift, Universitaet Augsburg. - * - Maik Häberlen. Diplomarbeit, Universitaet Augsburg. + * - Maik Haeberlen. Diplomarbeit, Universitaet Augsburg. */ +#include +#include +#include +#include +#include +#include + +/* important defines */ +#include "defines.h" + +/* function prototypes */ +#include "random.h" +#include "display.h" + +/* global variables */ +u32 sum_z_cells; +u32 sum_range_rate; +int random_fd; /* /dev/urandom file descriptor */ + +int usage() +{ + puts("usage:"); + puts("-h: help"); + puts("-a \t slope of nuclear energy loss (default 1)"); + puts("-c \t nuclear enery loss at depths 0 (default 0)"); + puts("-x \t # x cells (default 50)"); + puts("-y \t # y cells (default 50)"); + puts("-z \t # z cells (default 100)"); + puts("-s \t # steps to calculate (default 5000)"); + puts("-X \t display area intercept point x (default # x celss / 2)"); + puts("-Y \t display area intercept point y (default # y cells / 2)"); + puts("-Z \t display area intercept point z (default # z cells / 2)"); + puts("-d \t refresh every loops (default 100)"); + puts("-r \t pressure range from amorphous SiCx (default 2)"); + puts("-f \t faktor for pressure from amorphous SiCx (default 0.2)"); + puts("-p \t p0 for probability of cell getting amorph (default 0.2)"); + return -23; +} + +int make_amorph(u32 *cell) +{ + *cell|=AMORPH; + return 23; +} + +int make_cryst(u32 *cell) +{ + *cell&=~AMORPH; + return 23; +} + +/* look at cell ... */ +int process_cell(void *cell_p,u32 x,u32 y,u32 z,u32 x_max,u32 y_max,u32 z_max,int range,int faktor,int p0) +{ + u32 *cell; + int i,j,k,count; + double pressure; + // float count; + cell=(u32 *)(cell_p+x+y*(x_max-1)+z*(x_max-1)*(y_max-1)); + count=p0; + for(i=-range;i<=range;i++) + { + for(j=-range;j<=range;j++) + { + for(k=-range;k<=range;k++) + { + if(!(i==0 && j==0 && k==0)) + { + if(*(u32 *)(cell_p+((x+x_max+i)%x_max)+((y+j+y_max)%y_max)*(x_max-1)+((z+k+z_max)%z_max)*(x_max-1)*(y_max-1))&AMORPH) pressure+=faktor*URAND_2BYTE_MAX/(i*i+j*j+k*k); + // count+=(3*range*range-i*i-j*j-k*k); + } + } + } + } + // count+=faktor*1.0/(i*i+j*j+k*k); + if(*cell&AMORPH) + { + /* wrong probability! just test by now ...*/ + if(rand_get(sum_range_rate)>count) make_cryst(cell); + } else + { + if(rand_get(sum_range_rate)<=count) make_amorph(cell); + } + return 23; +} + +int main(int argc,char **argv) +{ + u32 x_cell,y_cell,z_cell; /* amount of segments */ + u32 x,y,z; /* cells */ + int i; /* for counting */ + int slope_nel,start_nel; /* nuclear energy loss: slope, constant */ + int a_p_range; /* p. range of amorphous sic */ + double a_p_faktor,a_p_p0; /* p0 and faktor of amorphous sic */ + int steps; /* # steps */ + void *cell_p; + struct __display display; + u32 display_x,display_y,display_z; /* intercept point of diplayed areas */ + u32 display_refresh_rate; /* refresh rate for display */ + int quit=0; /* continue/quit status */ + + /* default values */ + x_cell=DEFAULT_X_SEG; + y_cell=DEFAULT_Y_SEG; + z_cell=DEFAULT_Z_SEG; + slope_nel=DEFAULT_SLOPE_NEL; + start_nel=DEFAULT_START_NEL; + a_p_range=DEFAULT_A_P_RANGE; + a_p_faktor=DEFAULT_A_P_FAKTOR; + a_p_p0=NOT_SPECIFIED; + steps=DEFAULT_STEPS; + display_x=x_cell/2; + display_y=y_cell/2; + display_z=z_cell/2; + display_refresh_rate=DEFAULT_DISPLAY_REF_RATE; + + /* parse command args */ + for(i=1;i %u\n",sum_z_cells); + // sum_range_rate=0; + // for(i=-a_p_range;i<=a_p_range;i++) + // { + // for(j=-a_p_range;j<=a_p_range;j++) + // { + // for(k=-a_p_range;k<=a_p_range;k++) + // { + // if(!(i==0 && j==0 && k==0)) + // sum_range_rate+=((3*a_p_range*a_p_range)-i*i-j*j-k*k); + // } + // } + // } + // printfd("debug: sum range rate -> %u\n",sum_range_rate); + // /* add a_p_p0 ... */ + // if(a_p_p0==NOT_SPECIFIED) a_p_p0=sum_range_rate/4; + // sum_range_rate+=a_p_p0; + + + /* testing ... */ + + /* allocate cells */ + printf("malloc will free %d bytes now ...\n",x_cell*y_cell*z_cell*sizeof(u32)); + if((cell_p=malloc(x_cell*y_cell*z_cell*sizeof(u32)))==NULL) + { + puts("failed allocating memory for cells\n"); + return -23; + } + memset(cell_p,0,x_cell*y_cell*z_cell*sizeof(u32)); + + /* init display */ + display_init(x_cell,y_cell,z_cell,&display,cell_p,&argc,argv); + + /* main routine */ + for(i=0;i