From: W. Trevor King Date: Tue, 24 Feb 2009 00:01:23 +0000 (-0500) Subject: Corrected some strings for tension_model_utils. X-Git-Tag: v0.5~2 X-Git-Url: http://git.tremily.us/?p=sawsim.git;a=commitdiff_plain;h=a3425f444b8d70c3ef281cea10d500593a258fab Corrected some strings for tension_model_utils. --- diff --git a/src/sawsim.nw b/src/sawsim.nw index f84cc58..e72da96 100644 --- a/src/sawsim.nw +++ b/src/sawsim.nw @@ -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");