From: hackbard Date: Thu, 30 Sep 2004 17:24:00 +0000 (+0000) Subject: changed variables (part 2) X-Git-Url: https://hackdaworld.org/gitweb/?p=physik%2Fnlsop.git;a=commitdiff_plain;h=9a0a1b10e8e13f1cc1117eaa4c25a02112a36117 changed variables (part 2) --- diff --git a/nlsop.c b/nlsop.c index de46dc0..40803d5 100644 --- a/nlsop.c +++ b/nlsop.c @@ -61,9 +61,9 @@ int usage(void) 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); - printf("-f \t pressure = * 1/distance^2 (default %f)\n",A_AP); - printf("-p \t pressure offset (default %f)\n",B_AP); - printf("-F \t proportionality constant between c conc and ability to get amorphous (default %f)\n",A_CP); + printf("-f \t stress induced amorphization influence (default %f)\n",S_D); + 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); @@ -1145,9 +1145,9 @@ int main(int argc,char **argv) resave=RESAVE; my_info.z_diff=0; my_info.c_diff=1; - my_info.s=A_AP; - my_info.b=B_AP; - my_info.c=A_CP; + 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; diff --git a/nlsop.h b/nlsop.h index 0bc9009..be53ec3 100644 --- a/nlsop.h +++ b/nlsop.h @@ -37,9 +37,9 @@ typedef struct __info #define DR_CC .2 #define DIFF_RATE 1000 -#define A_AP .00001 -#define B_AP .00001 -#define A_CP .00001 +#define S_D .00001 +#define B_D .00001 +#define C_D .00001 #define MAX_CHARS 128 #define MAX_TXT 32