changed variables (part 2)
[physik/nlsop.git] / nlsop.c
diff --git a/nlsop.c b/nlsop.c
index de46dc0..40803d5 100644 (file)
--- a/nlsop.c
+++ b/nlsop.c
@@ -61,9 +61,9 @@ int usage(void)
  printf("-s <value> \t steps (default %d)\n",STEPS);
  printf("-d <value> \t refresh display (default %d)\n",REFRESH);
  printf("-r <value> \t amorphous influence range (default %d)\n",RANGE);
- printf("-f <value> \t pressure = <value> * 1/distance^2 (default %f)\n",A_AP);
- printf("-p <value> \t pressure offset (default %f)\n",B_AP);
- printf("-F <value> \t proportionality constant between c conc and ability to get amorphous (default %f)\n",A_CP);
+ printf("-f <value> \t stress induced amorphization influence (default %f)\n",S_D);
+ printf("-p <value> \t ballistic amorphization influence (default %f)\n",B_D);
+ printf("-F <value> \t carbon induced amorphization influence (default %f)\n",C_D);
  printf("-D <value> \t diffusion rate from cryst to amorph cells (default %f)\n",DR_AC);
  printf("-c <value> \t diffusion rate in cryst cells (default %f)\n",DR_CC);
  printf("-e <value> \t do diffusion every <value> 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;