X-Git-Url: https://hackdaworld.org/gitweb/?a=blobdiff_plain;f=posic.c;h=cd1a2e2bc1b616b75964546643a8bad9b604a873;hb=refs%2Fheads%2Forigin;hp=7c1c41848aff58df3068542f0e6b7b9541bce733;hpb=792f14f95b47989f7f12df0ea70b54619be016ee;p=physik%2Fposic.git diff --git a/posic.c b/posic.c index 7c1c418..cd1a2e2 100644 --- a/posic.c +++ b/posic.c @@ -18,113 +18,134 @@ int main(int argc,char **argv) { t_moldyn md; - t_atom *si; - - t_visual vis; - - t_random random; + t_lj_params lj; + t_ho_params ho; + t_tersoff_mult_params tp; int a,b,c; - double t,e,u; + double e; double help; t_3dvec p; - int count; - t_lj_params lj; + /* + * moldyn init + * + * - parsing argv + * - log init + * - random init + * + */ + a=moldyn_init(&md,argc,argv); + if(a<0) return a; - char fb[32]="saves/lj_test"; + /* + * the following overrides possibly set interaction methods by argv !! + */ - /* init */ + /* params */ + lj.sigma6=LJ_SIGMA_SI*LJ_SIGMA_SI; + help=lj.sigma6*lj.sigma6; + lj.sigma6*=help; + lj.sigma12=lj.sigma6*lj.sigma6; + lj.epsilon4=4.0*LJ_EPSILON_SI; + ho.equilibrium_distance=0.25*sqrt(3.0)*LC_SI; + ho.spring_constant=1; + /* assignement */ + md.potential_force_function=lennard_jones; + //md.potential_force_function=harmonic_oscillator; + md.pot_params=&lj; + //md.pot_params=&ho; + /* cutoff radius */ + md.cutoff=R_CUTOFF*LC_SI; - rand_init(&random,NULL,1); - random.status|=RAND_STAT_VERBOSE; + /* + * testing random numbers + */ - /* testing random numbers */ - //for(a=0;a<1000000;a++) - // printf("%f %f\n",rand_get_gauss(&random), - // rand_get_gauss(&random)); +#ifdef DEBUG_RANDOM_NUMBER + for(a=0;a<1000000;a++) + printf("%f %f\n",rand_get_gauss(&(md.random)), + rand_get_gauss(&(md.random))); + return 0; +#endif - visual_init(&vis,fb); + /* + * geometry & particles + */ + /* simulation cell volume in lattice constants */ a=LEN_X; b=LEN_Y; c=LEN_Z; + md.dim.x=a*LC_SI; + md.dim.y=b*LC_SI; + md.dim.z=c*LC_SI; - /* set for 'bounding atoms' */ - //vis.dim.x=a*LC_SI; - //vis.dim.y=b*LC_SI; - //vis.dim.z=c*LC_SI; - - t=TEMPERATURE; - - printf("placing silicon atoms ... "); - count=create_lattice(DIAMOND,SI,M_SI,LC_SI,a,b,c,&si); - printf("(%d) ok!\n",count); - - /* testing purpose - count=2; - si=malloc(2*sizeof(t_atom)); - si[0].r.x=0.16e-9; - si[0].r.y=0; - si[0].r.z=0; - si[0].element=SI; - si[0].mass=M_SI; - si[1].r.x=-0.16e-9; - si[1].r.y=0; - si[1].r.z=0; - si[1].element=SI; - si[1].mass=M_SI; - */ - - printf("setting thermal fluctuations\n"); - thermal_init(si,&random,count,t); - //v3_zero(&(si[0].v)); - //v3_zero(&(si[1].v)); + /* (un)set to (not) get visualized 'bounding atoms' */ + md.vis.dim.x=a*LC_SI; + md.vis.dim.y=b*LC_SI; + md.vis.dim.z=c*LC_SI; - /* check kinetic energy */ + /* + * particles + */ + + /* lattice init */ + +#ifndef SIMPLE_TESTING + md.count=create_lattice(DIAMOND,SI,M_SI,LC_SI,a,b,c,&(md.atom)); + printf("created silicon lattice (#atoms = %d)\n",md.count); +#else + md.count=2; + md.atom=malloc(md.count*sizeof(t_atom)); + md.atom[0].r.x=0.23*sqrt(3.0)*LC_SI/2.0; + md.atom[0].r.y=0; + md.atom[0].r.z=0; + md.atom[0].element=SI; + md.atom[0].mass=M_SI; + md.atom[1].r.x=-md.atom[0].r.x; + md.atom[1].r.y=0; + md.atom[1].r.z=0; + md.atom[1].element=SI; + md.atom[1].mass=M_SI; + + //md.atom[2].r.x=0.5*(a-1)*LC_SI; + //md.atom[2].r.y=0.5*(b-1)*LC_SI; + //md.atom[2].r.z=0; + //md.atom[2].element=C; + //md.atom[2].mass=M_C; + + //md.atom[3].r.x=0.5*(a-1)*LC_SI; + //md.atom[3].r.y=0; + //md.atom[3].r.z=0; + //md.atom[3].element=SI; + //md.atom[3].mass=M_SI; +#endif + + /* initial thermal fluctuations of particles */ + +#ifndef SIMPLE_TESTING + printf("setting thermal fluctuations (T=%f K)\n",md.t); + thermal_init(&md); +#else + for(a=0;a