Corrected some strings for tension_model_utils.
authorW. Trevor King <wking@drexel.edu>
Tue, 24 Feb 2009 00:01:23 +0000 (19:01 -0500)
committerW. Trevor King <wking@drexel.edu>
Tue, 24 Feb 2009 00:01:23 +0000 (19:01 -0500)
src/sawsim.nw

index f84cc587a5a19550fb8639b6968d8fbb23aa4354..e72da968b0cdbdae3cd46715e443db23f69ec665 100644 (file)
@@ -3738,7 +3738,7 @@ int main(int argc, char **argv)
   {
     int i,N=200;
     double x=0, F=0;
-    printf("#F (N)\tk (%% pop. per s)\n");
+    printf("#Distance (m)\tForce (N)\n");
     for (i=0; i<=N; i++) {
       x = Xmax*i/(double)N;
       F = (*model->handler)(x, &tdata);
@@ -3799,11 +3799,11 @@ void help(char *prog_name,
          tension_models[tension_model].params);
   printf("F(x) is calculated for a range of x and printed\n");
   printf("For example:\n");
-  printf("  #Distance (x)\tForce (N)\n");
+  printf("  #Distance (m)\tForce (N)\n");
   printf("  123.456\t7.89\n");
   printf("  ...\n");
   printf("-F\tSet the maximum F value for the standard mode F(x) output (currently %g)\n", Fmax);
-  printf("-X\tSet the maximum x value for the standart mode F(x) output (currently %g)\n", Xmax);
+  printf("-X\tSet the maximum x value for the standard mode F(x) output (currently %g)\n", Xmax);
   printf("-V\tChange output to verbose mode\n");
   printf("-h\tPrint this help and exit\n");
   printf("\n");